UNPKG

svelte-preprocess

Version:

A Svelte preprocessor wrapper with baked-in support for commonly used preprocessors

6 lines (5 loc) 252 B
import type { PreprocessorGroup, Options } from '../types'; /** Adapted from https://github.com/TehShrike/svelte-preprocess-postcss */ declare const postcss: (options?: Options.Postcss) => PreprocessorGroup; export { postcss }; export default postcss;