We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
CustomSyntax
1 parent 74dcca3 commit 053eef1Copy full SHA for 053eef1
src/config/customSyntax.d.ts
@@ -0,0 +1,17 @@
1
+import type { LiteralUnion } from '../utils'
2
+
3
+export interface CustomSyntax {}
4
5
+export type KnownCustomSyntax = LiteralUnion<
6
+ | 'postcss-angular'
7
+ | 'postcss-html'
8
+ | 'postcss-less'
9
+ | 'postcss-linaria'
10
+ | 'postcss-lit'
11
+ | 'postcss-markdown'
12
+ | 'postcss-sass'
13
+ | 'postcss-scss'
14
+ | 'postcss-styled-components'
15
+ | 'postcss-styled-syntax'
16
+ | keyof CustomSyntax
17
+>
0 commit comments