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

20
public/assets/quill/modules/table.d.ts vendored Normal file
View File

@@ -0,0 +1,20 @@
import Module from '../core/module.js';
import { TableCell, TableRow } from '../formats/table.js';
declare class Table extends Module {
static register(): void;
constructor(...args: ConstructorParameters<typeof Module>);
balanceTables(): void;
deleteColumn(): void;
deleteRow(): void;
deleteTable(): void;
getTable(range?: import("../core/selection.js").Range | null): [null, null, null, -1] | [Table, TableRow, TableCell, number];
insertColumn(offset: number): void;
insertColumnLeft(): void;
insertColumnRight(): void;
insertRow(offset: number): void;
insertRowAbove(): void;
insertRowBelow(): void;
insertTable(rows: number, columns: number): void;
listenBalanceCells(): void;
}
export default Table;