filmout_manager/src/globals.d.ts

16 lines
226 B
TypeScript
Raw Normal View History

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