10 lines
170 B
TypeScript
10 lines
170 B
TypeScript
import type { Value } from './Value';
|
|
|
|
export interface Scene {
|
|
name: string;
|
|
description?: string;
|
|
movingHead: boolean;
|
|
lightBar: boolean;
|
|
values?: Value[];
|
|
}
|