@overture-stack/lyric
Version:
Data Submission system
13 lines (12 loc) • 496 B
TypeScript
import { Dictionary as SchemasDictionary } from '@overture-stack/lectern-client';
import { Logger } from '../config/logger.js';
declare const client: (schemaServiceUrl: string, logger: Logger) => {
/**
* Fetch a Dictionary using Schema Service(Lectern)
* @param name Dictionary Name
* @param version Dictionary version
* @returns A Dictionary found
*/
fetchDictionaryByVersion(name: string, version: string): Promise<SchemasDictionary>;
};
export default client;