@visulima/packem
Version:
A fast and modern bundler for Node.js and TypeScript.
6 lines (5 loc) • 407 B
TypeScript
import type * as nodeSass from "node-sass";
import type * as sass from "sass";
import type * as sassEmbedded from "sass-embedded";
export declare const getDefaultSassImplementation: () => "sass-embedded" | "sass" | "node-sass";
export declare const getSassImplementation: (implementation: string | typeof sass | typeof sassEmbedded | typeof nodeSass) => typeof sass | typeof sassEmbedded | typeof nodeSass;