Last active
February 10, 2018 08:54
-
-
Save caseyWebb/865040ffc01caec477d3c56abf6f9a4c to your computer and use it in GitHub Desktop.
IGhostStoragePreprocessorTransform
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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