aboutsummaryrefslogtreecommitdiff
path: root/types/react-material-color-picker
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2019-02-14 23:59:16 -0500
committerDeterminant <ted.sybil@gmail.com>2019-02-14 23:59:16 -0500
commit495e0d4518871e950afcd38d7d3afeb5477076dc (patch)
treefd2bc9f49340a1c7f4f530e6aaa6607d4a4efacf /types/react-material-color-picker
parent6738cb883c37f2e388f1c86c84bd4c34a98699bd (diff)
finish migration
Diffstat (limited to 'types/react-material-color-picker')
-rw-r--r--types/react-material-color-picker/index.d.ts14
1 files changed, 14 insertions, 0 deletions
diff --git a/types/react-material-color-picker/index.d.ts b/types/react-material-color-picker/index.d.ts
new file mode 100644
index 0000000..361579b
--- /dev/null
+++ b/types/react-material-color-picker/index.d.ts
@@ -0,0 +1,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;
+}