import { ICallNotification, TWorkerMessage } from 'worker-timers-worker'; export const isCallNotification = (message: TWorkerMessage): message is ICallNotification => { return (message).method !== undefined && (message).method === 'call'; };