/** * Created by Christophe on 03/02/2017. */ import { Dispatcher } from "../common/dispatcher.class"; import { Actionable } from "../script/interfaces/actionable.interface"; export declare class Clock extends Dispatcher implements Actionable { period: number; private _interval; constructor(period: number); start(): void; stop(): void; executeAction(actionName: string, args: string[]): void; }