UNPKG

447 BTypeScriptView Raw
1export type Schema = import("schema-utils/declarations/validate").Schema;
2export type Compilation = import("webpack").Compilation;
3/**
4 * <T>
5 */
6export type LoaderOptions<T> = {
7 /**
8 * Allows to choose how errors are displayed.
9 */
10 severityError?: string | undefined;
11 minimizer?:
12 | import("./index").Minimizer<T>
13 | import("./index").Minimizer<T>[]
14 | undefined;
15 generator?: import("./index").Generator<T>[] | undefined;
16};