forked from zicloud/bigscreen_admin
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
510 B
TypeScript
14 lines
510 B
TypeScript
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 };
|