UNPKG

ts-json-schema-generator

Version:

Generate JSON schema from your Typescript sources

6 lines (5 loc) 185 B
import * as ts from "typescript"; import { Annotations } from "./Type/AnnotatedType"; export interface AnnotationsReader { getAnnotations(node: ts.Node): Annotations | undefined; }