UNPKG

@atlaskit/editor-core

Version:

A package contains Atlassian editor core functionality

15 lines (11 loc) 243 B
import SchemaNode from './schema-node'; export default class RefSchemaNode extends SchemaNode { path: string; constructor(path: string) { super(); this.path = path; } toJSON(): object { return { $ref: this.path }; } }