UNPKG

sdj-esm

Version:
62 lines (61 loc) 3.15 kB
import type { DataJI, DescriptionJI, EntityJI, EntitySearch, FuncLexGraphVerify, FuncStrNumVoid, ILexicon, ItemJI, ItemSearch, IValidator, SdJsonJI, SdKeyProps } from "../core/interfaces.js"; import type { IDataSdj, IDescriptionSdj, IEntitySdj, IItemSdj, IJsonSdj } from "../classes/class-interfaces.js"; import { type ESDJ_CLASS, type ESDJ_LOG } from "../core/statics.js"; import { type ILogManager, Logger } from "../util/log.js"; export interface GraphVerifyMap { [key: string]: FuncLexGraphVerify; } export declare interface ISdjLibrary { init: (log: FuncStrNumVoid, host: ISdjHost) => void; getDescList: () => string[]; getDescByName: (descName: string) => IDescriptionSdj | undefined; storeDesc: (inputDesc: IDescriptionSdj) => boolean; removeDesc: (descName: string) => boolean; } export interface GlobalOptions { logMode?: ESDJ_LOG; loggerStore?: Logger[]; logManager?: ILogManager; } export interface Settings { options?: GlobalOptions; library?: ISdjLibrary; lexicons?: ILexicon[]; } export interface ISdjSearch { dataByPath: (sdJson: IJsonSdj, dataPath: string) => IDataSdj | undefined; dataByItem: (sdJson: IJsonSdj, searchItem: ItemSearch, dataPath?: string) => IDataSdj[]; dataByEntity: (sdJson: IJsonSdj, searchEntity: EntitySearch, dataPath?: string) => IDataSdj[]; validStruct: (entity: IEntitySdj, dataSdj: DataJI, parentRef: DataJI | undefined, strict?: boolean) => boolean; validData: (entity: IEntitySdj, dataSdj: DataJI, strict?: boolean) => boolean; searchItems: (sdjDescript: IDescriptionSdj, searchItem: ItemSearch) => IItemSdj[]; searchEntities: (sdjDescript: IDescriptionSdj, searchEnt: EntitySearch) => IEntitySdj[]; } export declare interface ISdjLexicons { readonly names: string[]; getValidator: (validatorId: string) => IValidator; getByName: (lexId: string) => ILexicon | undefined; fullGraphJI: (inDescJI: DescriptionJI) => EntityJI[]; newBaseItems: () => ItemJI[]; fullItemJI: (inDescJI: DescriptionJI) => ItemJI[]; validateRequires: (descJI: DescriptionJI) => boolean; verifyData: (inJson: SdJsonJI, strict: boolean) => boolean; validateGraph: (inDescJI: DescriptionJI) => boolean; calcSdKeyProps: (entity: IEntitySdj, graph: IEntitySdj[]) => SdKeyProps; } export type SdjJITypes = SdJsonJI | DescriptionJI | ItemJI | EntityJI | DataJI; export type SdjInterfaces = ISdjHost | IJsonSdj | IDescriptionSdj | IItemSdj | IEntitySdj | IDataSdj; export type AllSdjTypes = SdjJITypes | SdjInterfaces; export declare interface ISdjHost { makeDescript: (inDescJI: DescriptionJI, unlocked?: boolean) => IDescriptionSdj; library: ISdjLibrary; lexiconMgr: ISdjLexicons; searchMgr: ISdjSearch; getLogFunc: (name: string) => FuncStrNumVoid; gLog: FuncStrNumVoid; logs: ILogManager; fullDescription: (inDescJI: DescriptionJI) => DescriptionJI; verifyJIbyType: (ji: SdjJITypes, jiType: ESDJ_CLASS, strict?: boolean) => boolean; checkClassInst: (ji: AllSdjTypes, jiType: ESDJ_CLASS, isClass?: boolean) => void; createDescription: (descJI: DescriptionJI) => IDescriptionSdj; }