EarthSDK
    正在准备搜索索引...

    类型别名 OnlyWithUndefined<T>

    OnlyWithUndefined: {
        [Property in keyof T as undefined extends T[Property] ? Property : never]: T[Property]
    }

    类型参数

    • T extends { [k: string]: any }