File tree Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ type UnitAllowedListIgnoreProperties = Partial<
9
9
>
10
10
>
11
11
12
- type UnitAllowedListIgnoreFunctions =
13
- | CSSFunction | RegExpLike
14
- | ( CSSFunction | RegExpLike ) [ ]
12
+ type UnitAllowedListIgnoreFunctions
13
+ = | CSSFunction | RegExpLike
14
+ | ( CSSFunction | RegExpLike ) [ ]
15
15
16
16
export type UnitAllowedListOptions = RuleConfig <
17
17
Unit | Unit [ ] ,
Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ type UnitDisallowedListIgnoreProperties = Partial<
9
9
>
10
10
>
11
11
12
- type UnitDisallowedListIgnoreFunctions =
13
- | CSSFunction | RegExpLike
14
- | ( CSSFunction | RegExpLike ) [ ]
12
+ type UnitDisallowedListIgnoreFunctions
13
+ = | CSSFunction | RegExpLike
14
+ | ( CSSFunction | RegExpLike ) [ ]
15
15
16
16
type UnitDisallowedListIgnoreMediaFeatureNames = Partial <
17
17
Record <
Original file line number Diff line number Diff line change @@ -18,14 +18,14 @@ export type RenamePrefix<
18
18
*
19
19
* @see [copied from issue](https://github.com/microsoft/TypeScript/issues/29729#issuecomment-471566609)
20
20
*/
21
- export type LiteralUnion < Union extends Base , Base = string > =
22
- | Union
23
- | ( Base & { zz_IGNORE_ME ?: never } )
21
+ export type LiteralUnion < Union extends Base , Base = string >
22
+ = | Union
23
+ | ( Base & { zz_IGNORE_ME ?: never } )
24
24
25
25
export type RegExpLike = RegExp | `/${string } /` | string
26
26
27
- export type KebabCase < S extends string , B extends boolean = true > =
28
- S extends `${infer F } ${infer O } `
27
+ export type KebabCase < S extends string , B extends boolean = true >
28
+ = S extends `${infer F } ${infer O } `
29
29
? F extends Uncapitalize < F >
30
30
? `${F } ${KebabCase < O , false > } `
31
31
: B extends true
You can’t perform that action at this time.
0 commit comments