This commit is contained in:
2023-08-06 12:40:09 +00:00
parent 257644aff7
commit cca7214446
2 changed files with 1 additions and 3 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
import type { Request, Response } from 'express';
import type { APICallT, Callable, DefAPINamespace, DeleteAPICallT, EmptyAPICallT, GetAPICallT, HeadAPICallT, HttpMethod, InvalidResponse, PatchAPICallT, PostAPICallT, PutAPICallT, RawArgType, ValidResponse, recoveryMethod } from '../apiStructure/defs';
import type { Callable, DefAPINamespace, DeleteAPICallT, GetAPICallT, HeadAPICallT, HttpMethod, InvalidResponse, PatchAPICallT, PostAPICallT, PutAPICallT, RawArgType, ValidResponse, recoveryMethod } from '../apiStructure/defs';
export const treatedSpecial = Symbol('treatedSpecial');
export type APINamespace = {
-2
View File
@@ -1,5 +1,3 @@
import { APIExecuter } from "../api/defs";
export type HttpMethod = 'get' | 'post' | 'put' | 'delete' | 'patch' | 'head';
export type RawArgType = Record<string, unknown> | Record<string, unknown>[] | undefined;