This commit is contained in:
Iliyan Angelov
2025-09-14 23:24:25 +03:00
commit c67067a2a4
71311 changed files with 6800714 additions and 0 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>;