mirror of
https://github.com/JasonYANG170/IOTConnect-Web.git
synced 2024-11-24 04:36:31 +00:00
10 lines
231 B
TypeScript
10 lines
231 B
TypeScript
|
import { TTimerType } from '../types';
|
||
|
export interface IClearRequest {
|
||
|
id: number;
|
||
|
method: 'clear';
|
||
|
params: {
|
||
|
timerId: number;
|
||
|
timerType: TTimerType;
|
||
|
};
|
||
|
}
|
||
|
//# sourceMappingURL=clear-request.d.ts.map
|