declarations
Version:
[](https://www.npmjs.com/package/declarations)
14 lines (12 loc) • 433 B
TypeScript
// Type definitions for EvaporateJS
// Project: https://github.com/TTLabs/EvaporateJS
// Definitions by: Andrew Kuklewicz <https://github.com/kookster/>, Chris Rhoden <https://github.com/chrisrhoden>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare class Evaporate {
cancel(id:string): boolean;
constructor(config:any);
add(config:any): string;
}
declare module 'evaporate' {
export = Evaporate;
}