UNPKG

@atlaskit/adf-schema

Version:

Shared package that contains the ADF-schema (json) and ProseMirror node/mark specs

15 lines (14 loc) 259 B
import { NodeSpec } from 'prosemirror-model'; /** * @name date_node */ export interface DateDefinition { type: 'date'; attrs: { /** * @minLength 1 */ timestamp: string; }; } export declare const date: NodeSpec;