timeline-state-resolver-types
Version:
Have timeline, control stuff
10 lines • 489 B
TypeScript
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