UNPKG

next-with-linaria

Version:
13 lines (12 loc) 463 B
import type { PluginOptions, Preprocessor } from '@wyw-in-js/transform'; import type { RawLoaderDefinitionFunction } from 'webpack'; export type LinariaLoaderOptions = { fastCheck?: boolean; preprocessor?: Preprocessor; sourceMap?: boolean; } & Partial<PluginOptions>; type LoaderType = RawLoaderDefinitionFunction<LinariaLoaderOptions & { name: string; }>; declare const webpackTransformLoader: LoaderType; export default webpackTransformLoader;