mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-24 05:06:02 +08:00
17 lines
270 B
TypeScript
17 lines
270 B
TypeScript
/// <reference path="./mixto.d.ts" />
|
|
|
|
import Mixin = require("mixto");
|
|
|
|
interface ISampleStatic extends Mixto.IMixinStatic {
|
|
new ():ISample;
|
|
}
|
|
|
|
interface ISample {
|
|
test():string;
|
|
}
|
|
|
|
declare var Sample: ISampleStatic;
|
|
|
|
Sample.includeInto(Function);
|
|
Sample.extend({});
|