2025-08-10 14:32:24 +08:00
|
|
|
// 类型声明文件
|
|
|
|
|
export interface ConstantType {
|
|
|
|
|
PAGE: number;
|
|
|
|
|
TOTAL: number;
|
|
|
|
|
DEFALUT_SITE_CONFIG: string;
|
|
|
|
|
LOG_TASK_ID: string;
|
2025-12-09 21:43:47 +08:00
|
|
|
HOSTED_MSG_TASK_ID: string;
|
2025-08-10 14:32:24 +08:00
|
|
|
STORE_TOKEN_NAME: string;
|
|
|
|
|
STORE_CUSTOM_NAME: string;
|
|
|
|
|
NO_AUTH_URL: string[];
|
|
|
|
|
WAYS_DATA: Array<{
|
|
|
|
|
type: string;
|
|
|
|
|
[key: string]: any;
|
|
|
|
|
}>;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export declare const CONSTANT: ConstantType;
|