rangePlugin.d.ts 312 Bytes
Newer Older
Joe TS Dell's avatar
Joe TS Dell committed
1
2
3
4
5
6
7
8
9
10
11
12
import { Plugin } from "../types/options";
export interface Config {
    input?: string | HTMLInputElement;
    position?: "left";
}
declare global {
    interface Window {
        rangePlugin: (config?: Config) => void;
    }
}
declare function rangePlugin(config?: Config): Plugin;
export default rangePlugin;