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 5 additions and 4 deletions
Showing only changes of commit adae7cf2ec - Show all commits

View file

@ -1,6 +1,7 @@
import { Ad, Announcement, Antenna, App, AuthSession, Clip, DriveFile, DriveFolder, GalleryPost, InstanceMetadata, Note, OriginType, Page, ServerInfo, Stats, User, UserGroup, UserList, UserSorting } from './entities';
type TODO = Record<string, any>;
import {
Ad, Announcement, Antenna, App, AuthSession, Clip, DriveFile, DriveFolder, GalleryPost, InstanceMetadata,
Note, OriginType, Page, ServerInfo, Stats, TODO, User, UserGroup, UserList, UserSorting
} from './entities';
type ShowUserReq = { username: string; host?: string; } | { userId: User['id']; };

View file

@ -1,7 +1,7 @@
export type ID = string;
export type DateString = string;
type TODO = Record<string, any> | null;
export type TODO = Record<string, any> | null;
export type User = {
id: ID;