November 2019
Beginner
804 pages
20h 1m
English
First, we define our interface:
interface MediaManController {
createBookCollection(): void;
reloadBookCollections(): void;
removeBookCollection(identifier: string): void;
createBook(collectionIdentifier: string): void;
removeBook(collectionIdentifier: string, bookIdentifier: string): void;
}
Our controller is really simple at this point; it defines methods to manage book collections and books.
Read now
Unlock full access