UNPKG

ts2json-schema

Version:

Build JSON schemas for your typescript types matching a pattern.

7 lines 239 B
import { PublicationInterface } from './Publication'; import { BookInterface } from './Book'; export interface LibraryInterface { books: BookInterface[]; publications: PublicationInterface[]; } //# sourceMappingURL=Library.d.ts.map