insomnia/flow-typed/moment.js

8 lines
129 B
JavaScript
Raw Normal View History

2017-07-21 20:11:01 +00:00
declare type moment = {
fromNow: () => string;
};
declare module 'moment' {
declare module.exports: (date: any) => moment
}