mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 11:20:19 +00:00
6 lines
211 B
TypeScript
6 lines
211 B
TypeScript
export declare const humanStr: (time: string | number) => number;
|
|
/**
|
|
* Parses a duration string in the form of "123.456S", returns milliseconds.
|
|
*/
|
|
export declare const durationStr: (time: string) => number;
|