Skip to content

Instantly share code, notes, and snippets.

@caseyWebb
Last active February 10, 2018 08:54
Show Gist options
  • Save caseyWebb/865040ffc01caec477d3c56abf6f9a4c to your computer and use it in GitHub Desktop.
Save caseyWebb/865040ffc01caec477d3c56abf6f9a4c to your computer and use it in GitHub Desktop.
IGhostStoragePreprocessorTransform
interface IGhostStoragePreprocessorTransform<T = {}> {
new?(config: T): void
save(img: Image, targetDir?: string): Promise<[Image, string | undefined][]>
delete(img: Image, targetDir?: string): Promise<[Image, string | undefined][]>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment