el.xwx.moe/types/global.ts

16 lines
252 B
TypeScript
Raw Normal View History

2023-03-05 15:03:20 -06:00
import { Link, Tag } from "@prisma/client";
export interface LinkAndTags extends Link {
tags: Tag[];
}
export interface NewLink {
name: string;
url: string;
tags: string[];
collection: {
2023-03-05 15:03:20 -06:00
id: string | number;
isNew?: boolean;
};
}