mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
8 lines
250 B
TypeScript
8 lines
250 B
TypeScript
import * as humanInterval from "human-interval";
|
|
|
|
function testHumanInterval() {
|
|
const value1 = humanInterval("one minute");
|
|
humanInterval.languageMap["one-hundred"] = 100;
|
|
const value2 = humanInterval("one-hundred and fifty seconds");
|
|
}
|