Files
DefinitelyTyped/mixto/mixto.d.ts
2016-03-17 21:06:54 +09:00

17 lines
392 B
TypeScript

// Type definitions for mixto
// Project: https://github.com/atom/mixto
// Definitions by: vvakame <https://github.com/vvakame/>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare namespace Mixto {
interface IMixinStatic {
includeInto(constructor:any):void;
extend(object:any):void;
}
}
declare module "mixto" {
var _tmp:Mixto.IMixinStatic;
export = _tmp;
}