mirror of
https://github.com/Kong/insomnia
synced 2024-11-07 14:19:58 +00:00
9 lines
165 B
JavaScript
9 lines
165 B
JavaScript
declare type moment = {
|
|
fromNow: () => string;
|
|
format: (fmt: string) => string;
|
|
};
|
|
|
|
declare module 'moment' {
|
|
declare module.exports: (date?: any) => moment
|
|
}
|