This commit is contained in:
counterweight 2026-05-14 10:56:04 +02:00
parent bc92231240
commit b8225c639e
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C
11904 changed files with 1472749 additions and 133 deletions

28
node_modules/mathjax-full/js/util/Styles.d.ts generated vendored Normal file
View file

@ -0,0 +1,28 @@
export declare type StyleList = {
[name: string]: string;
};
export declare type connection = {
children: string[];
split: (name: string) => void;
combine: (name: string) => void;
};
export declare type connections = {
[name: string]: connection;
};
export declare class Styles {
static pattern: {
[name: string]: RegExp;
};
static connect: connections;
protected styles: StyleList;
constructor(cssText?: string);
get cssText(): string;
set(name: string, value: string | number | boolean): void;
get(name: string): string;
protected setStyle(name: string, value: string): void;
protected combineChildren(name: string): void;
protected parentName(name: string): string;
protected childName(name: string, child: string): string;
protected normalizeName(name: string): string;
protected parse(cssText?: string): void;
}