MCPcopy Create free account
hub / github.com/Wulf/tsync / Book

Interface Book

test/directory_input/typescript.d.ts:4–14  ·  view source on GitHub ↗

Doc comments are preserved too!

Source from the content-addressed store, hash-verified

2
3/** Doc comments are preserved too! */
4interface Book {
5 /** Name of the book. */
6 name: string;
7 /** Chapters of the book. */
8 chapters: Array<Chapter>;
9 /**
10 * Reviews of the book
11 * by users.
12 */
13 user_reviews?: Array<string>;
14}
15
16/** Book struct with camelCase field names. */
17interface BookCamel {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected