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

Methods

  • Parameters

    • uri: string

    Returns Promise<JSONDocument>