UNPKG

soma.js

Version:

soma.js is a javascript framework created to build scalable and maintainable applications.

17 lines (10 loc) 198 B
///<reference path='../vo/time.ts'/> module clock { export interface ITimer { callbacks: any[]; time: TimeVO; update():void; add(callback:any):void; remove(callback:any):void; } }