Type Alias LoaderTypeValue<T>

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

Loader type value

Type Parameters

  • T

Type declaration

  • namespace: string | undefined

    variable namespace

  • stringValue: string | undefined

    string value of output

  • type: string | undefined

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

  • value: T | undefined

    output value

0.2.18