@visulima/packem
Version:
A fast and modern bundler for Node.js and TypeScript.
11 lines (10 loc) • 460 B
TypeScript
/**
* Modified copy of https://github.com/csstools/postcss-plugins/blob/main/plugin-packs/postcss-bundler/src/postcss-import/lib/apply-conditions.ts
*
* MIT No Attribution (MIT-0)
* Copyright © CSSTools Contributors
*/
import type { AtRule, AtRuleProps } from "postcss";
import type { Stylesheet } from "./types.d.ts";
declare const applyConditions: (stylesheet: Stylesheet, atRule: (defaults?: AtRuleProps) => AtRule) => void;
export = applyConditions;