UNPKG

438 BTypeScriptView Raw
1import type { IExternalInteractor } from "../../Core/Interfaces/IExternalInteractor";
2import type { Container } from "../../Core/Container";
3import type { IDelta } from "../../Core/Interfaces/IDelta";
4export declare class TrailMaker implements IExternalInteractor {
5 private readonly container;
6 private delay;
7 constructor(container: Container);
8 interact(delta: IDelta): void;
9 isEnabled(): boolean;
10 reset(): void;
11}