screenshotlayer-node
Version:
screenshotlayer api wrapper
27 lines (15 loc) • 412 B
TypeScript
// Type definitions for screenshotlayer-node
declare class BaseClient {
}
declare class Application extends BaseClient {
captureSnapshot(params: any): Promise<any>;
}
declare class sslayerNodeClient {
constructor()
constructor(clientAccessKey: string);
setApiKey(clientAccessKey: string): void;
application: Application;
}
declare namespace sslayerNodeClient {
}
export = sslayerNodeClient;