first commit

This commit is contained in:
Beyhan Oğur
2026-04-26 21:30:42 +03:00
commit 4d92991817
1982 changed files with 284835 additions and 0 deletions

13
public/assets/quill/formats/list.d.ts vendored Normal file
View 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 };