diff --git a/packages/api-rest/src/types/index.ts b/packages/api-rest/src/types/index.ts index 3949925f008..f011f717a94 100644 --- a/packages/api-rest/src/types/index.ts +++ b/packages/api-rest/src/types/index.ts @@ -6,14 +6,14 @@ export type GetInput = ApiInput; export type PostInput = ApiInput; export type PutInput = ApiInput; export type PatchInput = ApiInput; -export type DeleteInput = ApiInput>; +export type DeleteInput = ApiInput; export type HeadInput = ApiInput>; export type GetOperation = Operation; export type PostOperation = Operation; export type PutOperation = Operation; export type PatchOperation = Operation; -export type DeleteOperation = Operation>; +export type DeleteOperation = Operation; export type HeadOperation = Operation>; /**