UNPKG

375 BTypeScriptView Raw
1import { NodeSpec } from 'prosemirror-model';
2import { ListItemDefinition as ListItemNode } from './list-item';
3/**
4 * @name bulletList_node
5 */
6export interface BulletListDefinition {
7 type: 'bulletList';
8 /**
9 * @minItems 1
10 */
11 content: Array<ListItemNode>;
12}
13export declare const bulletListSelector = ".ak-ul";
14export declare const bulletList: NodeSpec;