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

View File

@@ -0,0 +1,24 @@
import { AuditoryDescription } from '../audio/auditory_description.js';
import { BaseRuleStore, RulesJson } from './base_rule_store.js';
export declare class MathStore extends BaseRuleStore {
annotators: string[];
constructor();
initialize(): void;
annotations(): void;
defineAlias(name: string, prec: string, ...args: string[]): void;
defineRulesAlias(name: string, query: string, ...args: string[]): void;
defineSpecializedRule(name: string, oldDynamic: string, newDynamic: string, opt_action?: string): void;
defineSpecialized(name: string, _old: string, dynamic: string): void;
evaluateString(str: string): AuditoryDescription[];
parse(ruleSet: RulesJson): void;
private addAlias_;
static regexp: {
NUMBER: string;
DECIMAL_MARK: string;
DIGIT_GROUP: string;
};
protected matchNumber(str: string): {
number: string;
length: number;
} | null;
}