misskey/src/endpoints.ts

9 lines
196 B
TypeScript
Raw Normal View History

2021-05-14 02:46:39 +00:00
import { Instance, User } from './types';
type TODO = Record<string, any>;
export type Endpoints = {
'i': { req: TODO; res: User; };
'meta': { req: { detail?: boolean; }; res: Instance; };
};