We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Combinator.raws
1 parent 210fd21 commit a86d19bCopy full SHA for a86d19b
1 file changed
postcss-selector-parser.d.ts
@@ -339,8 +339,16 @@ declare namespace parser {
339
function selector(opts: ContainerOptions): Selector;
340
function isSelector(node: any): node is Selector;
341
342
+ interface CombinatorRaws {
343
+ value?: string;
344
+ spaces?: {
345
+ before?: string;
346
+ after?: string;
347
+ };
348
+ }
349
interface Combinator extends Base {
- type: "combinator"
350
+ type: "combinator";
351
+ raws?: CombinatorRaws;
352
}
353
function combinator(opts: NodeOptions): Combinator;
354
function isCombinator(node: any): node is Combinator;
0 commit comments