Home > @dinofe/xt-core > BaseConfig
# BaseConfig type
基础 HTTP 配置
Signature:
export type BaseConfig = {
encrypt: boolean;
commonParams: Partial<Pick<AppConfig, 'appId' | 'merNo' | 'deviceId' | 'appKey'>>;
authorization: string | null | (() => (string | null)) | (() => Promise<string | null>);
};
References: AppConfig