Skip to content

Commit

Permalink
Fix common colors typings
Browse files Browse the repository at this point in the history
  • Loading branch information
alitaheri committed Sep 28, 2017
1 parent 40f063d commit 0cf6801
Showing 1 changed file with 14 additions and 24 deletions.
38 changes: 14 additions & 24 deletions src/colors/common.d.ts
@@ -1,25 +1,15 @@
declare const black: string;
declare const white: string;
declare const transparent: string;
declare const fullBlack: string;
declare const darkBlack: string;
declare const lightBlack: string;
declare const minBlack: string;
declare const faintBlack: string;
declare const fullWhite: string;
declare const darkWhite: string;
declare const lightWhite: string;

export default {
black,
white,
transparent,
fullBlack,
darkBlack,
lightBlack,
minBlack,
faintBlack,
fullWhite,
darkWhite,
lightWhite
declare const common: {
black: string;
white: string;
transparent: string;
fullBlack: string;
darkBlack: string;
lightBlack: string;
minBlack: string;
faintBlack: string;
fullWhite: string;
darkWhite: string;
lightWhite: string;
};

export default common;

0 comments on commit 0cf6801

Please sign in to comment.