@visulima/packem
Version:
A fast and modern bundler for Node.js and TypeScript.
8 lines (6 loc) • 422 B
text/typescript
import type { AtRule, Document, Postcss, Result, Root } from "postcss";
import type { Condition, ImportOptions, State, Stylesheet } from "../types.d.cts";
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 = parseStyles;