mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-22 11:57:33 +08:00
17 lines
233 B
TypeScript
17 lines
233 B
TypeScript
|
|
|
|
import Mixin = require("mixto");
|
|
|
|
interface ISampleStatic extends Mixto.IMixinStatic {
|
|
new ():ISample;
|
|
}
|
|
|
|
interface ISample {
|
|
test():string;
|
|
}
|
|
|
|
declare var Sample: ISampleStatic;
|
|
|
|
Sample.includeInto(Function);
|
|
Sample.extend({});
|