feat: refactoring project

This commit is contained in:
Carlos
2024-11-23 14:56:07 -05:00
parent f0c2a50c18
commit 1c6db5818d
2351 changed files with 39323 additions and 60326 deletions

8
node_modules/postcss/lib/rule.d.ts generated vendored
View File

@@ -40,7 +40,7 @@ declare namespace Rule {
semicolon?: boolean
}
export type RuleProps = ContainerProps & {
export type RuleProps = {
/** Information used to generate byte-to-byte equal node string as it was in the origin input. */
raws?: RuleRaws
} & (
@@ -50,11 +50,11 @@ declare namespace Rule {
selectors?: never
}
| {
/** Selectors of the rule represented as an array of strings. */
selectors: string[]
selector?: never
/** Selectors of the rule represented as an array of strings. */
selectors: readonly string[]
}
)
) & ContainerProps
// eslint-disable-next-line @typescript-eslint/no-use-before-define
export { Rule_ as default }