import type { ActionHandler, TickIntervalDecoratorFlag } from "../module"; export interface OnTickMethodDecorator extends Omit, "name"> { readonly name: "onTick"; } /** * For *onTick() action only, to specify to tick interval in second. */ export declare function Interval(second: number): (target: Fn, _: OnTickMethodDecorator) => void; //# sourceMappingURL=Interval.d.ts.map