export interface LoginData { /** * 小程序返回code */ code?: string; /** * web返回openid */ openId?: string; /** * 阿里小程序返回authCode */ authCode?: string; } declare const _default: (data?: { code?: string; aliScopes?: string[]; }) => Promise; export default _default;