@lou.codes/cron
Version:
⏲️ Cron Quartz and Cron UNIX expression parser
27 lines (26 loc) • 1.19 kB
TypeScript
/**
* Map from 3 letter aliases to their respective number representations.
*
* @category Cron String
*/
export declare const normalizeMap: {
/** Sunday number representation */ readonly sun: 0;
/** Monday number representation */ readonly mon: 1;
/** Tuesday number representation */ readonly tue: 2;
/** Wednesday number representation */ readonly wed: 3;
/** Thursday number representation */ readonly thu: 4;
/** Friday number representation */ readonly fri: 5;
/** Saturday number representation */ readonly sat: 6;
/** January number representation */ readonly jan: 1;
/** February number representation */ readonly feb: 2;
/** March number representation */ readonly mar: 3;
/** April number representation */ readonly apr: 4;
/** May number representation */ readonly may: 5;
/** June number representation */ readonly jun: 6;
/** July number representation */ readonly jul: 7;
/** August number representation */ readonly aug: 8;
/** September number representation */ readonly sep: 9;
/** October number representation */ readonly oct: 10;
/** November number representation */ readonly nov: 11;
/** December number representation */ readonly dec: 12;
};