Skip to content

Instantly share code, notes, and snippets.

@nanotaboada
Created May 10, 2017 18:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nanotaboada/083f23e8c43fd3d045d924afa04620be to your computer and use it in GitHub Desktop.
Save nanotaboada/083f23e8c43fd3d045d924afa04620be to your computer and use it in GitHub Desktop.
A TypeScript class for a Book
export class Book {
constructor(
public isbn: string,
public title: string,
public subtitle: string,
public author: string,
public publisher: string,
public published: string,
public pages: number,
public description: string,
public website: string
) { }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment