first commit

This commit is contained in:
Beyhan Oğur
2026-04-26 21:33:39 +03:00
commit 4362c3b83f
1991 changed files with 285411 additions and 0 deletions

13
public/assets/quill/formats/link.d.ts vendored Normal file
View File

@@ -0,0 +1,13 @@
import Inline from '../blots/inline.js';
declare class Link extends Inline {
static blotName: string;
static tagName: string;
static SANITIZED_URL: string;
static PROTOCOL_WHITELIST: string[];
static create(value: string): HTMLElement;
static formats(domNode: HTMLElement): string | null;
static sanitize(url: string): string;
format(name: string, value: unknown): void;
}
declare function sanitize(url: string, protocols: string[]): boolean;
export { Link as default, sanitize };