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

23
node_modules/mathjax-full/js/util/Options.d.ts generated vendored Normal file
View File

@@ -0,0 +1,23 @@
export declare function isObject(obj: any): boolean;
export declare type OptionList = {
[name: string]: any;
};
export declare const APPEND = "[+]";
export declare const REMOVE = "[-]";
export declare const OPTIONS: {
invalidOption: "warn" | "fatal";
optionError: (message: string, _key: string) => void;
};
export declare class Expandable {
}
export declare function expandable(def: OptionList): any;
export declare function makeArray(x: any): any[];
export declare function keys(def: OptionList): (string | symbol)[];
export declare function copy(def: OptionList): OptionList;
export declare function insert(dst: OptionList, src: OptionList, warn?: boolean): OptionList;
export declare function defaultOptions(options: OptionList, ...defs: OptionList[]): OptionList;
export declare function userOptions(options: OptionList, ...defs: OptionList[]): OptionList;
export declare function selectOptions(options: OptionList, ...keys: string[]): OptionList;
export declare function selectOptionsFromKeys(options: OptionList, object: OptionList): OptionList;
export declare function separateOptions(options: OptionList, ...objects: OptionList[]): OptionList[];
export declare function lookup(name: string, lookup: OptionList, def?: any): any;