refactor: fix types

This commit is contained in:
syuilo 2023-02-17 15:06:52 +09:00
parent d4eb1def61
commit bde22208fe
2 changed files with 53 additions and 0 deletions

View file

@ -27,6 +27,7 @@ import { packedFederationInstanceSchema } from '@/models/schema/federation-insta
import { packedQueueCountSchema } from '@/models/schema/queue.js';
import { packedGalleryPostSchema } from '@/models/schema/gallery-post.js';
import { packedEmojiSchema } from '@/models/schema/emoji.js';
import { packedFlashSchema } from '@/models/schema/flash.js';
export const refs = {
UserLite: packedUserLiteSchema,
@ -57,6 +58,7 @@ export const refs = {
FederationInstance: packedFederationInstanceSchema,
GalleryPost: packedGalleryPostSchema,
Emoji: packedEmojiSchema,
Flash: packedFlashSchema,
};
export type Packed<x extends keyof typeof refs> = SchemaType<typeof refs[x]>;