UNPKG

typescript-closure-tools

Version:

Command-line tools to convert closure-style JSDoc annotations to typescript, and to convert typescript sources to closure externs files

17 lines (14 loc) 385 B
// 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; }