Files
est-frame/node_modules/parse-numeric-range/index.d.ts
2025-10-22 05:38:27 +00:00

6 lines
222 B
TypeScript
Executable File

/**
* Parses expressions like `1-10,20-30`. Returns an energetic (as opposed to lazy) array.
* @param expression a numeric range expression
*/
declare function parse(expression: string): number[];
export = parse;