Files
2023-04-17 10:35:35 -04:00

16 lines
413 B
TypeScript

export default {
properties: {
default: {
oneOf: [{ type: 'string' }, { type: 'object' }],
},
default_language: { type: 'string' },
allow_language_selection: { type: 'boolean' },
keys: {
type: 'object',
properties: { code: { type: 'string' }, lang: { type: 'string' } },
},
output_code_only: { type: 'boolean' },
code_mirror_config: { type: 'object' },
},
};