DefinitelyTyped/types/human-interval/human-interval-tests.ts
2019-06-27 17:09:57 -07:00

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");
}