UNPKG

startercodeforcicdpipeline

Version:

This is my starter code for my TYPESCRIPT CI CD PIPELINE

13 lines (11 loc) 264 B
export class Book { constructor( public id: number, public title: string, public author: string, public available: boolean ) {} toggleAvailability(): void { this.available = !this.available; } }