6 lines
69 B
TypeScript
6 lines
69 B
TypeScript
export type Card = {
|
|
id: number;
|
|
url: string;
|
|
name: string;
|
|
};
|