aboutsummaryrefslogtreecommitdiff
path: root/types/react-material-color-picker/index.d.ts
blob: 361579bf9c1695ba55c1addfec8b3bd620f77f0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
declare module 'react-material-color-picker' {
    class MaterialColorPicker {
        constructor(props: {
            initColor: string,
            style: {[name: string]: string | number},
            submitLabel: string,
            resetLabel: string,
            onSelect: (event: { target: value }) => void,
            onSubmit: () => void,
            onReset: () => void
        });
    }
    export = LRUCache;
}