source: frontend/node_modules/@csstools/postcss-progressive-custom-properties/dist/matchers.d.ts

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 2 weeks ago

Fix frontend appearance

  • Property mode set to 100644
File size: 702 bytes
Line 
1export declare const matchers: ({
2 supports: string;
3 property: string;
4 sniff: string;
5 matchers: {
6 type: string;
7 value: string;
8 nodes: ({
9 type: string;
10 value: string;
11 isVariable?: undefined;
12 } | {
13 type: string;
14 value?: undefined;
15 isVariable?: undefined;
16 } | {
17 type: string;
18 isVariable: boolean;
19 value?: undefined;
20 })[];
21 }[];
22} | {
23 supports: string;
24 property: string;
25 sniff: string;
26 matchers: {
27 type: string;
28 value: string;
29 dimension: {
30 unit: string;
31 };
32 }[];
33})[];
Note: See TracBrowser for help on using the repository browser.