19 lines
No EOL
441 B
TypeScript
19 lines
No EOL
441 B
TypeScript
import { Temporal } from "temporal-polyfill"
|
|
import type { SceneDefinition } from "../types"
|
|
|
|
export const sceneChoiceTest: SceneDefinition = {
|
|
id: "choice-test",
|
|
type: "choice",
|
|
label: "Auswahl-Test",
|
|
plannedDuration: Temporal.Duration.from({ seconds: 30 }),
|
|
options: [
|
|
{
|
|
id: "a",
|
|
label: "Option A"
|
|
},
|
|
{
|
|
id: "b",
|
|
label: "Option B"
|
|
}
|
|
]
|
|
} |