mirror of
https://github.com/bfloydd/streams.git
synced 2026-07-22 12:50:25 +00:00
11 lines
No EOL
188 B
TypeScript
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[];
|
|
}
|