UNPKG

@visulima/packem

Version:

A fast and modern bundler for Node.js and TypeScript.

7 lines (6 loc) 427 B
import type { AtRule, Document, Postcss, Result, Root } from "postcss"; import type { Condition, ImportOptions, State, Stylesheet } from "../types.d.mts"; declare const parseStyles: (options: { root: string; } & ImportOptions, result: Result, styles: Root | Document, state: State, importingNode: AtRule | null, conditions: Condition[], from: string[], postcss: Postcss) => Promise<Stylesheet>; export default parseStyles;