Type alias ArrayUpdate<Schema>

ArrayUpdate<Schema>: {
    [K in keyof Schema as any[] extends Schema[K]
        ? K
        : never]?: PickArrayTypes<Schema[K]>
}

Types some array operations. Not inherently strict or weak.

Type Parameters

  • Schema