Files
ArchiveCostWebapp/logic/node-red-data/node_modules/cronstrue/dist/cronParser.d.ts
T
huesser b518ae8edb
Build and Publish Site / docker (push) Successful in 23s
Workflow funktioniert nun wieder. Es gab Probleme nach Aenderungen.
ABER: Die Applikation funktioniert nur lokal. Die deployte Version geht noch nicht.
2026-07-03 13:24:08 +02:00

14 lines
632 B
TypeScript

export declare class CronParser {
expression: string;
dayOfWeekStartIndexZero: boolean;
monthStartIndexZero: boolean;
constructor(expression: string, dayOfWeekStartIndexZero?: boolean, monthStartIndexZero?: boolean);
parse(): string[];
parseSpecial(expression: string): string;
protected extractParts(expression: string): string[];
protected normalize(expressionParts: string[]): void;
protected validate(parsed: string[]): void;
protected validateAnyRanges(parsed: string[]): void;
protected validateOnlyExpectedCharactersFound(cronPart: string, allowedCharsExpression: string): void;
}