UNPKG

timeline-state-resolver-types

Version:
10 lines 489 B
import { DeviceType, HTTPSendCommandContent, TemplateString } from '..'; export type TimelineContentHTTPSendAny = TimelineContentHTTPRequest; export interface TimelineContentHTTPSendBase { deviceType: DeviceType.HTTPSEND; } export interface HTTPSendCommandContentExt extends Omit<HTTPSendCommandContent, 'url'> { url: string | TemplateString; } export type TimelineContentHTTPRequest = TimelineContentHTTPSendBase & HTTPSendCommandContentExt; //# sourceMappingURL=httpSend.d.ts.map