Type Alias CustomTypeStorage<T, Specifics>

CustomTypeStorage: {
    readonly [P in keyof T]: CustomTypePropertyStorage<T[P], Specifics>
}

Type Parameters