UNPKG

@atlaskit/editor-core

Version:

A package contains Atlassian editor core functionality

15 lines (11 loc) 245 B
import SchemaNode from './schema-node'; export default class ConstSchemaNode extends SchemaNode { value: any; constructor(value: any) { super(); this.value = value; } toJSON(): object { return { const: this.value }; } }