@overture-stack/lyric
Version:
Data Submission system
10 lines (9 loc) • 414 B
TypeScript
import { Dictionary as SchemasDictionary, type Schema } from '@overture-stack/lectern-client';
import type { FieldNamesByPriorityMap } from './types.js';
/**
* Get Fields from Schema
* @param {Schema} schema Schema object
* @returns The arrays of requied and options fields from the schema
*/
export declare const getSchemaFieldNames: (schema: Schema) => FieldNamesByPriorityMap;
export { SchemasDictionary };