mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
17 lines
391 B
TypeScript
17 lines
391 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;
|
|
}
|