1
0

add initial marp implementation with sample content and build configuration

This commit is contained in:
2025-09-13 18:13:22 +02:00
parent dcacc9b409
commit e5f219507f
10319 changed files with 1402023 additions and 0 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;
}