@bbc/timeline-state-resolver-types
Version:
Have timeline, control stuff
32 lines • 896 B
TypeScript
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and re-run the "tsr-schema-types" tool to regenerate this file.
*/
export interface MultiOscOptions {
connections: {
connectionId: string;
host: string;
port: number;
type: MultiOSCDeviceType;
}[];
timeBetweenCommands: number;
}
export declare enum MultiOSCDeviceType {
TCP = "tcp",
UDP = "udp"
}
export interface MappingMultiOscLayer {
connectionId: string;
mappingType: MappingMultiOscType.Layer;
}
export declare enum MappingMultiOscType {
Layer = "layer"
}
export type SomeMappingMultiOsc = MappingMultiOscLayer;
export interface MultiOscDeviceTypes {
Options: MultiOscOptions;
Mappings: SomeMappingMultiOsc;
Actions: null;
}
//# sourceMappingURL=multiOsc.d.ts.map