UNPKG

@furystack/rest

Version:
11 lines 276 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; }; //# sourceMappingURL=patch-endpoint.d.ts.map