interface IJSONWorker {
    getMatchingSchemas(uri): Promise<MatchingSchema[]>;
    parseJSONDocument(uri): Promise<null | JSONDocument>;
}

Methods

  • Parameters

    • uri: string

    Returns Promise<MatchingSchema[]>

  • Parameters

    • uri: string

    Returns Promise<null | JSONDocument>