UNPKG

mist.js

Version:

Motion Design in Modular CSS

32 lines (27 loc) 693 B
/*! * @copyright AI428 * @description Motion Design in Modular CSS * @license http://opensource.org/licenses/MIT * @namespace Mist * @version 0.8.9 */ /// <reference path='mist/component.ts'/> /// <reference path='mist/statement.ts'/> /** * @param {} statement * @returns {Mist.Statement} */ function mist(statement: Element): Mist.Statement; /** * @param {} statement * @returns {Mist.Statement} */ function mist(statement: string): Mist.Statement; /** * @param {} statement * @returns {Mist.Statement} */ function mist(statement: any): Mist.Statement { return Mist.Component.create<Mist.Statement>( Mist.Statement, statement); }