import { TTimerType } from '../types';

export interface IClearRequest {
    id: number;

    method: 'clear';

    params: {
        timerId: number;

        timerType: TTimerType;
    };
}
