@wopjs/cast - v0.1.14
    Preparing search index...

    Type Alias ExplicitOptional<T>

    ExplicitOptional: { [K in keyof Required<T>]: T[K] }

    Converts optional properties (?) into required properties with explicit undefined in their type.

    e.g. { a?: string; b: number } becomes { a: string | undefined; b: number }

    Type Parameters

    • T