WXL
3 天以前 3bd962a6d7f61239c020e2dbbeb7341e5b842dd1
node_modules/postcss/lib/rule.d.ts
@@ -44,19 +44,19 @@
    /** Information used to generate byte-to-byte equal node string as it was in the origin input. */
    raws?: RuleRaws
  } & (
      | {
          /** Selector or selectors of the rule. */
          selector: string
          selectors?: never
        }
      | {
          selector?: never
          /** Selectors of the rule represented as an array of strings. */
          selectors: readonly string[]
        }
    ) & ContainerProps
    | {
        /** Selector or selectors of the rule. */
        selector: string
        selectors?: never
      }
    | {
        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 }
}