Files
2025-12-07 14:32:46 +00:00

10 lines
231 B
TypeScript
Executable File

import { TTimerType } from '../types';
export interface IClearRequest {
id: number;
method: 'clear';
params: {
timerId: number;
timerType: TTimerType;
};
}
//# sourceMappingURL=clear-request.d.ts.map