Workspaces refactor #86

Merged
norm merged 189 commits from refactor/workspaces into main 2022-08-28 14:46:45 +00:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 1cfa30b982 - Show all commits

View file

@ -1,4 +1,4 @@
import { ID, Instance, Note, OriginType, Page, ServerInfo, Stats, User, UserSorting } from './types'; import { ID, InstanceMetadata, Note, OriginType, Page, ServerInfo, Stats, User, UserSorting } from './types';
type TODO = Record<string, any>; type TODO = Record<string, any>;
@ -48,7 +48,7 @@ export type Endpoints = {
// messaging // messaging
// meta // meta
'meta': { req: { detail?: boolean; }; res: Instance; }; 'meta': { req: { detail?: boolean; }; res: InstanceMetadata; };
// miauth // miauth

View file

@ -59,7 +59,7 @@ export type Note = {
}[]; }[];
}; };
export type Instance = { export type InstanceMetadata = {
emojis: { emojis: {
category: string; category: string;
}[]; }[];