paradiego

This commit is contained in:
2024-09-18 13:34:19 -03:00
commit 3f0e204289
12510 changed files with 1486101 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
export type Options = {
nonce?: string;
key: string;
container: Node;
speedy?: boolean;
prepend?: boolean;
insertionPoint?: HTMLElement;
};
export declare class StyleSheet {
isSpeedy: boolean;
ctr: number;
tags: HTMLStyleElement[];
container: Node;
key: string;
nonce: string | undefined;
prepend: boolean | undefined;
before: Element | null;
insertionPoint: HTMLElement | undefined;
private _alreadyInsertedOrderInsensitiveRule;
constructor(options: Options);
private _insertTag;
hydrate(nodes: HTMLStyleElement[]): void;
insert(rule: string): void;
flush(): void;
}