fix(core): update

This commit is contained in:
2019-06-03 17:16:47 +02:00
parent 8853eecbb9
commit 54a0ec6c71
9 changed files with 106 additions and 83 deletions

2
ts/interfaces/index.ts Normal file
View File

@ -0,0 +1,2 @@
export * from './interfaces.screenshotresult';

View File

@ -0,0 +1,5 @@
export interface IScreenShotResult {
name: string;
id: string;
buffer: Buffer;
}