diff options
Diffstat (limited to 'types')
-rw-r--r-- | types/materialcolorize/index.d.ts | 7 |
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; +} |