UNPKG

@furystack/rest

Version:
9 lines 294 B
import type { WithOptionalId } from '@furystack/core'; /** * Endpoint model for creating new entities */ export type PostEndpoint<T, TPrimaryKey extends keyof T, TPostData = WithOptionalId<T, TPrimaryKey>> = { body: TPostData; result: T; }; //# sourceMappingURL=post-endpoint.d.ts.map