mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 04:49:15 +08:00
17 lines
385 B
TypeScript
17 lines
385 B
TypeScript
// Type definitions for mixto
|
|
// Project: https://github.com/atom/mixto
|
|
// Definitions by: vvakame <https://github.com/vvakame/>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
declare module Mixto {
|
|
interface IMixinStatic {
|
|
includeInto(constructor:any):void;
|
|
extend(object:any):void;
|
|
}
|
|
}
|
|
|
|
declare module "mixto" {
|
|
var _tmp:Mixto.IMixinStatic;
|
|
export = _tmp;
|
|
}
|