@allgemein/schema-api
Version:
Library for schema api
17 lines (16 loc) • 470 B
TypeScript
import { IClassRef } from '../../api/IClassRef';
import { METADATA_TYPE } from '../Constants';
export interface IParseOptions {
isRoot?: boolean;
ref?: IClassRef;
className?: string;
isProperty?: boolean;
propertyName?: string;
metaType?: METADATA_TYPE;
sourceRef?: IClassRef;
ignoreDeclared?: boolean;
asArray?: boolean;
$ref?: string;
isPattern?: boolean;
}
export declare const PARSE_OPTIONS_KEYS: (keyof IParseOptions)[];