You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
716 B
18 lines
716 B
import Core, { Config, SendOption, SendSuccess, SendFail } from "../../core/src";
|
|
export interface RNConfig extends Config {
|
|
reportApiSpeed?: boolean;
|
|
beforeReportSpeed?: Function;
|
|
}
|
|
export default class Aegis extends Core {
|
|
static sessionID: string;
|
|
static asyncPluginIndex: number;
|
|
originRequest: typeof fetch;
|
|
speedLogPipeline: import("../../core/src").Pipeline<any, any>;
|
|
constructor(config: RNConfig);
|
|
get getBean(): string;
|
|
reportError(...msg: any): void;
|
|
request: (options: SendOption, success?: SendSuccess | undefined, fail?: SendFail | undefined) => void;
|
|
uploadLogs(params?: any, conds?: any): void;
|
|
getAsyncStorage(): any;
|
|
private getCurrentPageUrl;
|
|
}
|
|
|