mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
20 lines
295 B
TypeScript
20 lines
295 B
TypeScript
export const $Word = {
|
|
properties: {
|
|
text: {
|
|
type: "string",
|
|
isRequired: true,
|
|
},
|
|
start: {
|
|
type: "number",
|
|
isRequired: true,
|
|
},
|
|
end: {
|
|
type: "number",
|
|
isRequired: true,
|
|
},
|
|
speaker: {
|
|
type: "number",
|
|
},
|
|
},
|
|
} as const;
|