insomnia/flow-typed/moment.js
2017-07-21 13:11:01 -07:00

8 lines
129 B
JavaScript

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