import { IProxy } from "@thetinyspark/coffe-maker"; import { Image } from "canvas"; export default interface IAppProxy extends IProxy { setUserArgs(sourceDir: string, outputDir: string, atlasSize: number): any; getSourceDir(): string; getOuputDir(): string; getAtlasSize(): number; setTextures(images: Image[]): any; getTextures(): Image[]; }