mirror of
https://github.com/quartz-community/utils.git
synced 2026-07-22 02:50:27 +00:00
8 lines
334 B
TypeScript
8 lines
334 B
TypeScript
declare function removeAllChildren(el: HTMLElement): void;
|
|
declare function registerEscapeHandler(
|
|
outsideContainer: HTMLElement | null,
|
|
onEscape: () => void,
|
|
): () => void;
|
|
declare function normalizeRelativeURLs(html: Document, baseUrl: string): void;
|
|
|
|
export { normalizeRelativeURLs, registerEscapeHandler, removeAllChildren };
|