filmout_manager/src/globals.d.ts

18 lines
269 B
TypeScript
Raw Normal View History

interface SequenceState {
hash : string,
name : string,
progress : number,
current? : number
}
interface State {
width? : number,
height? : number,
sequence? : SequenceState
}
interface Message {
cmd? : string;
state? : State;
sequence? : string;
}