🏷️ Frames types added

This commit is contained in:
ful1e5 2020-08-31 12:40:40 +05:30
parent 04c6b3936b
commit b5a6680401

View file

@ -4,4 +4,10 @@ interface Config {
bitmapsDir: string; bitmapsDir: string;
} }
export { Config }; interface Frames {
[fileName: string]: {
buffer: Buffer;
};
}
export { Config, Frames };