tinytime
tinytime copied to clipboard
TypeScript Support ?
Maybe need a definition file index.d.ts
declare module 'tinytime' {
interface TinyTime {
render: (date: Date) => string
}
interface TinyTimeOptions {
padHours?: boolean
padDays?: boolean
padMonth?: boolean
}
declare const tinytime: (
template: string,
options: TinyTimeOptions = {}
) => TinyTime
export default tinytime
}