Skip to content

Commit

Permalink
fix: lint colorFormats
Browse files Browse the repository at this point in the history
  • Loading branch information
Cage committed Jul 7, 2021
1 parent 14b5ce3 commit 7909448
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/types/ColorFormats.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,14 @@
* `hex` returns a color in hexadecimal format. `#000000`
*
* `rgbArray` returns a array of rgb. `[0, 0, 0]`
*
*
* `hslString` returns an hsl string format. `hsl(0, 0, 0)`
*
*
* `hslArray` returns a array of hsl. `[0, 0, 0]`
*/
export type ColorFormats = 'rgbString' | 'hex' | 'rgbArray' | 'hslString' | 'hslArray';
export type ColorFormats =
| 'rgbString'
| 'hex'
| 'rgbArray'
| 'hslString'
| 'hslArray';

0 comments on commit 7909448

Please sign in to comment.