export interface ILoginReq { username: string; password: string; } export interface ILoginResp { result: string; respHeader: []; }