level-up/shared/script/scenes/choice-test.ts
Moritz Ruth 34fa93ad44
Some checks failed
Build / build (push) Failing after 39s
Change script types and add a few scenes
2025-04-12 18:44:43 +02:00

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"
}
]
}