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

Interface BookCamel

test/struct/typescript.d.ts:17–27  ·  view source on GitHub ↗

Book struct with camelCase field names.

Source from the content-addressed store, hash-verified

15
16/** Book struct with camelCase field names. */
17interface BookCamel {
18 /** Name of the book. */
19 name: string;
20 /** Chapters of the book. */
21 chapters: Array<Chapter>;
22 /**
23 * Reviews of the book
24 * by users.
25 */
26 userReviews?: Array<string>;
27}
28
29/**
30 * Multiple line comments

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected