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