Remove duplicate space.

This commit is contained in:
Matt Schlenker 2022-09-24 10:01:29 -07:00 committed by GitHub
parent 724c194baa
commit 7f7ebc5d1d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
source/index.d.ts vendored
View file

@ -2,7 +2,7 @@
// import {ColorInfo, ColorSupportLevel} from '#supports-color';
import {ColorInfo, ColorSupportLevel} from './vendor/supports-color/index.js';
type BasicColor = 'black' | 'red' | 'green' | 'yellow' | 'blue' | 'magenta' | 'cyan' | 'white';
type BasicColor = 'black' | 'red' | 'green' | 'yellow' | 'blue' | 'magenta' | 'cyan' | 'white';
type BrightColor = `${BasicColor}Bright`;
type Grey = 'gray' | 'grey';