9 lines
196 B
TypeScript
9 lines
196 B
TypeScript
|
import { Instance, User } from './types';
|
||
|
|
||
|
type TODO = Record<string, any>;
|
||
|
|
||
|
export type Endpoints = {
|
||
|
'i': { req: TODO; res: User; };
|
||
|
'meta': { req: { detail?: boolean; }; res: Instance; };
|
||
|
};
|