Interface Author

This interface represents an author, including their optional name and an optional array of linked books.

interface Author {
    name?: string;
    books?: Linked<Book>[];
}

Properties

Properties

name?: string

The optional name of the author

books?: Linked<Book>[]

An optional array of linked books