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/sdk / types / FieldsWildcard

Type alias: FieldsWildcard<Item, Fields>

FieldsWildcard<Item, Fields>: unknown extends Fields ? keyof Item : UnpackList<Fields> extends infer Field ? Field extends undefined ? keyof Item : Field extends "*" ? keyof Item : Field extends string ? Field : never : never

Return all keys if Fields is undefined or contains '*'

Type parameters

Item extends object

Fields

Source

types/fields.ts:93