export interface Output {
    status: number;
    error?: any;
    data?: any;
}
export interface request_herder {
    access_token?: string;
    "access-token"?: string;
    code?: string;
    authorization?: string;
    "Content-Type"?: string;
    "alipay-request-id"?: string;
}
export interface reqtoken {
    tokenvalue: string;
    time: string;
}
export interface redis_inter_option {
    host: string;
    port: number;
    password?: string;
    db: number;
}
export interface pubmini {
    appid: string;
    appSecret: string;
    redis_options?: redis_inter_option;
}
export interface pubalimini {
    appid: string;
    privateKey: string;
    alipayPublicKey: string;
    redis_options?: redis_inter_option;
}
export interface intemyauthentication {
    appid: string;
    redis_options?: redis_inter_option;
}
