mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-29 00:51:29 +08:00
13 lines
401 B
TypeScript
13 lines
401 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
|
|
|
|
export = Evaporate;
|
|
|
|
declare class Evaporate {
|
|
cancel(id:string): boolean;
|
|
constructor(config:any);
|
|
add(config:any): string;
|
|
}
|