UNPKG

259 BTypeScriptView Raw
1import { NodeSpec } from 'prosemirror-model';
2/**
3 * @name date_node
4 */
5export interface DateDefinition {
6 type: 'date';
7 attrs: {
8 /**
9 * @minLength 1
10 */
11 timestamp: string;
12 };
13}
14export declare const date: NodeSpec;