bfloydd_streams/types.ts
2025-01-29 13:25:21 -07:00

11 lines
No EOL
188 B
TypeScript

export interface Stream {
id: string;
name: string;
folder: string;
icon: string;
showInRibbon: boolean;
}
export interface StreamsSettings {
streams: Stream[];
}