UNPKG

@furystack/rest

Version:
9 lines (8 loc) 209 B
/** * Endpoint model for updating entities */ export type PatchEndpoint<T, TPrimaryKey extends keyof T, TWritableData = Partial<T>> = { body: TWritableData url: { id: T[TPrimaryKey] } result: object }