mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-06 19:15:12 +02:00
6 lines
222 B
TypeScript
6 lines
222 B
TypeScript
/**
|
|
* 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; |