Commit 4ac9d6b committed Mar 27, 2023 Verified
1 parent 3102478 commit 4ac9d6b Copy full SHA for 4ac9d6b
File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -25,18 +25,18 @@ import LazyResult from './lazy-result.js'
25
25
import Processor from './processor.js'
26
26
27
27
type DocumentProcessor = (
28
- document : postcss . Document ,
28
+ document : Document ,
29
29
helper : postcss . Helpers
30
30
) => Promise < void > | void
31
- type RootProcessor = ( root : postcss . Root , helper : postcss . Helpers ) => Promise < void > | void
31
+ type RootProcessor = ( root : Root , helper : postcss . Helpers ) => Promise < void > | void
32
32
type DeclarationProcessor = (
33
- decl : postcss . Declaration ,
33
+ decl : Declaration ,
34
34
helper : postcss . Helpers
35
35
) => Promise < void > | void
36
- type RuleProcessor = ( rule : postcss . Rule , helper : postcss . Helpers ) => Promise < void > | void
37
- type AtRuleProcessor = ( atRule : postcss . AtRule , helper : postcss . Helpers ) => Promise < void > | void
36
+ type RuleProcessor = ( rule : Rule , helper : postcss . Helpers ) => Promise < void > | void
37
+ type AtRuleProcessor = ( atRule : AtRule , helper : postcss . Helpers ) => Promise < void > | void
38
38
type CommentProcessor = (
39
- comment : postcss . Comment ,
39
+ comment : Comment ,
40
40
helper : postcss . Helpers
41
41
) => Promise < void > | void
42
42
You can’t perform that action at this time.
0 commit comments