Skip to content
On this page

This is an auto-generated document to support extension builders understand the internal packages they can utilize. To find our written guides, tutorials, and API/SDK reference, check out our main docs .

Directus / @directus/types / Alterations

Type alias: Alterations<T, K>

Alterations<T, K>: Object

Type parameters

T extends Item = Item

K extends keyof T | undefined = undefined

Type declaration

create

create: Partial<T>[]

delete

delete: K extends keyof T ? T[K] : PrimaryKey[]

update

update: K extends keyof T ? Partial<T> & Pick<T, K> : Partial<T>[]

Source

items.ts:5