| 22 | |
| 23 | declare module 'prettytime' { |
| 24 | interface IOptions { |
| 25 | decimals: number; |
| 26 | short: boolean; |
| 27 | } |
| 28 | |
| 29 | function prettytime(ms: number, options?: Partial<IOptions>): string; |
| 30 | export default prettytime; |
nothing calls this directly
no outgoing calls
no test coverage detected