mirror of
https://github.com/JasonYANG170/IOTConnect-Web.git
synced 2024-11-23 20:26:28 +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
|