UNPKG

cecon-interfaces

Version:
11 lines (10 loc) 278 B
import { IEntity } from './i-entity'; import { ETopics } from '../enum/topics.enum'; export interface ITopic extends IEntity { callbackUrl: string | null; deviceId: string; deviceName: string; expiresAt: number; tokenFcm: string | null; type: ETopics; }