mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2025-03-16 12:15:39 +01:00
8 lines
196 B
TypeScript
8 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; };
|
|
};
|