@nodescript/core
Version:
Visual programming language for Browser and Node
22 lines • 594 B
JavaScript
import { Schema } from 'airtight';
import { IdSchema } from '../util/id.js';
export const PropEntrySpecSchema = new Schema({
id: 'PropSpec',
type: 'object',
properties: {
id: IdSchema.schema,
key: { type: 'string' },
value: { type: 'string' },
linkId: {
type: 'string',
optional: true,
},
linkKey: {
type: 'string',
optional: true,
},
expand: { type: 'boolean' },
managed: { type: 'boolean', optional: true },
},
});
//# sourceMappingURL=PropEntrySpec.js.map