insomnia/flow-typed/moment.js
2017-11-13 01:18:27 +00:00

9 lines
165 B
JavaScript

declare type moment = {
fromNow: () => string;
format: (fmt: string) => string;
};
declare module 'moment' {
declare module.exports: (date?: any) => moment
}