Skip to content

Commit

Permalink
Merge pull request #30 from Weishi93/fix-const
Browse files Browse the repository at this point in the history
fix(index.d.ts): fix enabled and visible not const
  • Loading branch information
doowb committed Dec 4, 2018
2 parents aaead5d + 1620d0c commit f77db83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions types/index.d.ts
Expand Up @@ -133,8 +133,8 @@ export const bgMagentaBright: StyleFunction;
export const bgCyanBright: StyleFunction;
export const bgWhiteBright: StyleFunction;

export const enabled: boolean;
export const visible: boolean;
export let enabled: boolean;
export let visible: boolean;
export const ansiRegex: RegExp;

/**
Expand Down

0 comments on commit f77db83

Please sign in to comment.