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
+3
View File
@@ -0,0 +1,3 @@
import type { AtRule } from 'postcss';
export default function transformAtruleWithinAtrule(node: AtRule, parent: AtRule): void;
export declare function isAtruleWithinAtrule(node: AtRule, parent: AtRule): boolean;
+5
View File
@@ -0,0 +1,5 @@
import { options } from './options.js';
import { walkFunc } from './walk-func.js';
import type { AtRule, Rule } from 'postcss';
export default function atruleWithinRule(node: AtRule, parent: Rule, walk: walkFunc, opts: options): void;
export declare function isAtruleWithinRule(node: AtRule): boolean;
+2
View File
@@ -0,0 +1,2 @@
import type { ChildNode, Container } from 'postcss';
export default function cleanupParent(parent: Container<ChildNode>): void;
+4
View File
@@ -0,0 +1,4 @@
import type { AtRule, Node, Rule } from 'postcss';
export declare function isAtRule(node?: Node): node is AtRule;
export declare function isNestRule(node?: Node): node is AtRule;
export declare function isRule(node?: Node): node is Rule;
+1
View File
@@ -0,0 +1 @@
export declare function comma(string: string): string[];
+1
View File
@@ -0,0 +1 @@
export default function mergeParams(fromParams: string, toParams: string): string;
@@ -0,0 +1 @@
export declare function combinationsWithSizeN(set: Array<string>, n: number): Array<Array<string>>;
@@ -0,0 +1,2 @@
import type { Container, Node } from 'postcss-selector-parser';
export declare function sortCompoundSelectorsInsideComplexSelector(node: Container<string, Node>): void;
@@ -0,0 +1,2 @@
import { options } from '../options';
export default function mergeSelectors(fromSelectors: Array<string>, toSelectors: Array<string>, opts: options): any[];
@@ -0,0 +1 @@
export declare function nodesAreEquallySpecific(nodes: Array<string>): boolean;
+5
View File
@@ -0,0 +1,5 @@
import type { AtRule, Rule } from 'postcss';
import { walkFunc } from './walk-func.js';
import { options } from './options.js';
export default function transformNestRuleWithinRule(node: AtRule, parent: Rule, walk: walkFunc, opts: options): void;
export declare function isValidNestRuleWithinRule(node: AtRule): boolean;
+3
View File
@@ -0,0 +1,3 @@
export declare type options = {
noIsPseudoSelector: boolean;
};
+4
View File
@@ -0,0 +1,4 @@
import type { Rule } from 'postcss';
import { options } from './options.js';
export default function transformRuleWithinRule(node: Rule, parent: Rule, opts: options): void;
export declare function isValidRuleWithinRule(node: Rule): boolean;
+2
View File
@@ -0,0 +1,2 @@
import type { ChildNode, Container } from 'postcss';
export default function shiftNodesBeforeParent(node: ChildNode, parent: Container<ChildNode>): void;
+2
View File
@@ -0,0 +1,2 @@
declare const _default: string[];
export default _default;
+4
View File
@@ -0,0 +1,4 @@
import type { Container } from 'postcss';
export declare type walkFunc = (node: Container, opts: {
noIsPseudoSelector: boolean;
}) => void;
+3
View File
@@ -0,0 +1,3 @@
import type { Container } from 'postcss';
import { options } from './options.js';
export default function walk(node: Container, opts: options): void;