aboutsummaryrefslogtreecommitdiff
path: root/types
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2019-02-19 14:45:03 -0500
committerDeterminant <ted.sybil@gmail.com>2019-02-19 14:45:03 -0500
commit4405b25ca6844b27ecc18ec91e37470d283726d3 (patch)
tree06fcd39e08af278abfd9e1457de15b7df0cb47bb /types
parenta6b9dadfe68921e6c7795518441109e77963ecd9 (diff)
improve the UI
Diffstat (limited to 'types')
-rw-r--r--types/materialcolorize/index.d.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/types/materialcolorize/index.d.ts b/types/materialcolorize/index.d.ts
new file mode 100644
index 0000000..85d866c
--- /dev/null
+++ b/types/materialcolorize/index.d.ts
@@ -0,0 +1,7 @@
+declare module 'materialcolorize' {
+ namespace materialcolorize {
+ function approximateColor(color: string): string;
+ function getColorFamily(color: string): {[key: string]: string};
+ }
+ export = materialcolorize;
+}