@atlaskit/adf-schema
Version:
Shared package that contains the ADF-schema (json) and ProseMirror node/mark specs
13 lines (12 loc) • 325 B
TypeScript
/**
* @name placeholder_node
*/
export interface PlaceholderDefinition {
type: 'placeholder';
attrs: {
text: string;
localId?: string;
};
}
export declare const placeholder: import("prosemirror-model").NodeSpec;
export declare const placeholderWithLocalId: import("prosemirror-model").NodeSpec;