1
0
mirror of synced 2025-01-31 03:53:47 +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 };