project bootstrap

This commit is contained in:
2023-11-25 18:12:47 -05:00
parent 5cd875ae80
commit 6ef22d88f9
39139 changed files with 4944609 additions and 2 deletions
@@ -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
@@ -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
@@ -0,0 +1 @@
export declare function matches(a: any, b: any): boolean;
@@ -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;
};
}[];
})[];
@@ -0,0 +1 @@
export declare function supportConditionsFromValue(value: string): Array<string>;