Mari's guided journal software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
mari-guided-journal/src/datatypes/EmpathyGroup.ts

20 lines
476 B

import {schema} from "../schemata/SchemaData.js";
export interface EmpathyGroup {
readonly header: string
readonly items: readonly string[]
}
export type EmpathyGroupJTD = typeof EmpathyGroupJTD
export const EmpathyGroupJTD = schema({
schema: {
properties: {
header: {type: "string"},
items: {elements: {type: "string"}}
}
},
typeHint: null as EmpathyGroup | null,
key: "empathyGroup",
references: [],
})