Skip to content

Commit

Permalink
fix: minor TS syntax fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-north committed Aug 2, 2018
1 parent 96e2dfd commit 752a288
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/styles.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import X11_COLORS from './colors';

interface StyleObj { [k: string]: string; };
interface StyleObj { [k: string]: string; }

const COLOR_STYLES: StyleObj = { };
for (let c of X11_COLORS) {
Expand All @@ -15,6 +15,6 @@ for (let c of X11_COLORS) {
// };

export default {
...COLOR_STYLES,
...COLOR_STYLES // ,
// ...fontStyles
};

0 comments on commit 752a288

Please sign in to comment.