This commit is contained in:
szabomarton
2025-01-28 11:38:27 +01:00
parent 9c5ca86086
commit 7f4a15b9c3
36841 changed files with 4032468 additions and 1 deletions

View File

@@ -0,0 +1,2 @@
import type { Node } from 'postcss-value-parser';
export declare function doublePositionGradients(node: Node): Array<string>;

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,3 @@
import type { PluginCreator } from 'postcss';
declare const creator: PluginCreator<null>;
export default creator;

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
export declare function matches(a: any, b: any): boolean;

View File

@@ -0,0 +1,33 @@
export declare const matchers: ({
supports: string;
property: string;
sniff: string;
matchers: {
type: string;
value: string;
nodes: ({
type: string;
value: string;
isVariable?: undefined;
} | {
type: string;
value?: undefined;
isVariable?: undefined;
} | {
type: string;
isVariable: boolean;
value?: undefined;
})[];
}[];
} | {
supports: string;
property: string;
sniff: string;
matchers: {
type: string;
value: string;
dimension: {
unit: string;
};
}[];
})[];

View File

@@ -0,0 +1 @@
export declare function supportConditionsFromValue(value: string): Array<string>;