mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-24 10:53:08 +02:00
13 lines
206 B
TypeScript
13 lines
206 B
TypeScript
|
declare module 'ms' {
|
||
|
interface IMSOptions {
|
||
|
long: boolean;
|
||
|
}
|
||
|
|
||
|
function ms(value: string): number;
|
||
|
function ms(value: number, options?: IMSOptions): string;
|
||
|
|
||
|
namespace ms {} // Hack
|
||
|
|
||
|
export = ms;
|
||
|
}
|