Closed kazuemon closed 5 months ago
📔 Note: Choice Usecase
const schema = choice({
elements: {
hello: integer({
tagClass: TagClass.CONTEXT_SPECIFIC,
tagType: 0,
}),
world: octetString({
tagClass: TagClass.CONTEXT_SPECIFIC,
tagType: 1,
}),
},
});
type t1 =
| {
hello: number
}
| {
world: string
}