import type { IRawConfig, IConfig } from './configModel'; import type { IUpdateParams } from './update'; import type { ILoadRawParams } from './loadRaw'; import type { ILoadParams } from './load'; import type { ILoadUserParams } from './loadUser'; export interface IApi { configurationLoad(param: ILoadParams): Promise; configurationLoadUser(param: ILoadUserParams): Promise; configurationLoadRaw(param: ILoadRawParams): Promise; configurationUpdate(param: IUpdateParams): Promise; }