Files
study/modern-react/my-react-ts/src/Book.ts

8 lines
113 B
TypeScript

export type Book = {
isbn: string,
title: string,
price: number,
summary: string,
download: boolean
};