typescript-closure-tools
Version:
Command-line tools to convert closure-style JSDoc annotations to typescript, and to convert typescript sources to closure externs files
27 lines (20 loc) • 478 B
TypeScript
/// <reference path="../../../globals.d.ts" />
declare module goog.fx {
interface Transition {
/**
* Plays the transition.
*/
play: any /*missing*/;
/**
* Stops the transition.
*/
stop: any /*missing*/;
}
}
declare module goog.fx.Transition {
/**
* Transition event types.
* @enum {string}
*/
enum EventType { PLAY, BEGIN, RESUME, END, STOP, FINISH, PAUSE }
}