@cloudbase/app
Version:
cloudbase javascript sdk core
34 lines (33 loc) • 768 B
TypeScript
export declare const ERROR: {
INVALID_PARAM: {
code: string;
message: string;
};
SYS_ERR: {
code: string;
message: string;
};
STORAGE_REQUEST_FAIL: {
code: string;
message: string;
};
STORAGE_FILE_NONEXIST: {
code: string;
message: string;
};
TCB_CLS_UNOPEN: {
code: string;
message: string;
};
INVALID_CONTEXT: {
code: string;
message: string;
};
};
export declare const ADMIN_PATH = "/admin";
export declare const CLIENT_AUTH_PATH = "/auth/v1/token/clientCredential";
export declare const checkCustomUserIdRegex: RegExp;
export declare enum SECRET_TYPE {
'SECRET' = "SECRET",
'SESSION_SECRET' = "SESSION_SECRET"
}