You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
510 B
13 lines
510 B
import Block from '../blots/block.js'; |
|
import Container from '../blots/container.js'; |
|
import type Scroll from '../blots/scroll.js'; |
|
declare class ListContainer extends Container { |
|
} |
|
declare class ListItem extends Block { |
|
static create(value: string): HTMLElement; |
|
static formats(domNode: HTMLElement): string | undefined; |
|
static register(): void; |
|
constructor(scroll: Scroll, domNode: HTMLElement); |
|
format(name: string, value: string): void; |
|
} |
|
export { ListContainer, ListItem as default };
|
|
|