momentPlugin.d.ts 177 Bytes
Newer Older
Joe TS Dell's avatar
Joe TS Dell committed
1
2
3
4
5
6
import { Plugin } from "../types/options";
export interface Config {
    moment: Function;
}
declare function momentPlugin(config: Config): Plugin;
export default momentPlugin;