UNPKG

egg-minifapp

Version:

对接各种小程序之类app的sdk

39 lines (38 loc) 826 B
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; }