There is no rule to enforce single quotes or double quotes for type objects or aliases. Any of these are valid and doesn't respect eslint's base `quotes` rule. ``` type A = 'test'; type B = "test"; type T = { test: "hello" | 'test', t: 'hello', }; ```
There is no rule to enforce single quotes or double quotes for type objects or aliases.
Any of these are valid and doesn't respect eslint's base
quotesrule.