first commit
This commit is contained in:
13
public/assets/quill/formats/list.d.ts
vendored
Normal file
13
public/assets/quill/formats/list.d.ts
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
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 };
|
||||
Reference in New Issue
Block a user