1
0
mirror of synced 2025-02-07 06:31:17 +01:00

refactor: type card data

This commit is contained in:
Juchan Roh 2023-02-05 01:35:25 +09:00
parent dccba6eec2
commit 2aae47489b

7
src/types.ts Normal file
View File

@ -0,0 +1,7 @@
type Card = {
sid: string;
name: string;
image?: string;
};
export type { Card };