This commit is contained in:
syuilo
2021-05-14 11:46:39 +09:00
parent b53a6bfe0c
commit cb0e275db9
7 changed files with 520 additions and 1 deletions

8
src/endpoints.ts Normal file
View File

@@ -0,0 +1,8 @@
import { Instance, User } from './types';
type TODO = Record<string, any>;
export type Endpoints = {
'i': { req: TODO; res: User; };
'meta': { req: { detail?: boolean; }; res: Instance; };
};