mirror of
https://github.com/Gongxh0901/kunpolibrary
synced 2025-08-02 21:38:41 +00:00
28 lines
444 B
TypeScript
28 lines
444 B
TypeScript
/**
|
|
* @Author: Gongxh
|
|
* @Date: 2024-12-28
|
|
* @Description:
|
|
*/
|
|
|
|
export interface INetResponse {
|
|
responseStatus: number;
|
|
packet: any;
|
|
}
|
|
|
|
export interface IServerInfo {
|
|
/** 名称 */
|
|
name: string,
|
|
/** http地址 */
|
|
url: string,
|
|
/** 应用id */
|
|
appid: string,
|
|
/** 密钥 */
|
|
secret: string,
|
|
}
|
|
|
|
export const ServerConfig: IServerInfo = {
|
|
name: "dev-gblnn",
|
|
url: "",
|
|
appid: "",
|
|
secret: "",
|
|
} |