Type Alias LoaderTypeValueStrict<T>

LoaderTypeValueStrict: {
    namespace: string | undefined;
    stringValue: string;
    type: string | undefined;
    value: T;
}

Loader type strict value

Type Parameters

  • T

Type declaration

  • namespace: string | undefined

    variable namespace

  • stringValue: string

    string value of output

  • type: string | undefined

    type of loader output (default, env,...)

  • value: T

    output value

0.2.18