Preview:ts type OptionData = { name: string; value: number; available: boolean } const options = { AAA: { name: 'hello_a', value: 1234, available: true }, BBB: { name: 'apple_b', value: 1212, available: false }, CCC: { name: 'spaghetti_c', value: 531, available: true } ...
You can choose specific lines to embed by selecting them before copying the link.