@visulima/packem
Version:
A fast and modern bundler for Node.js and TypeScript.
8 lines (6 loc) • 386 B
TypeScript
import type { CSSImports } from "icss-utils";
import type { ProcessOptions } from "postcss";
import type Processor from "postcss/lib/processor";
import type { Load } from "./load.d.ts";
declare const resolve: (icssImports: CSSImports, load: Load, file: string, extensions: string[], processor: Processor, options?: ProcessOptions) => Promise<Record<string, string>>;
export = resolve;