-
-
Notifications
You must be signed in to change notification settings - Fork 151
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create-library #437
base: master
Are you sure you want to change the base?
Create-library #437
Conversation
author?: Namesake | ||
} | ||
|
||
type BookCategories = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you select this chunk of code and run format selection, it will standardize the typescript formatting.
interface BookData { | ||
title: string | ||
/** The Dewey system hasn't been invented yet, but... */ | ||
category: BookCategories[] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd rename this to categories
, to indicate its plurality.
] | ||
} | ||
|
||
export const library = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Empty object can be removed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not yet- the PR isn't even close to being complete, it's just so people can see what's being worked on so we don't get duplicates.
What does this do?
Adds a library.
How was this tested? Did you test the changes in the compiled
.html
file?Is there a GitHub Issue that this is resolving?
Closes #265.