8 lines
249 B
TypeScript
8 lines
249 B
TypeScript
|
// @ts-ignore
|
||
|
import { name } from '../package.json';
|
||
|
|
||
|
export const authType = 'WeChat';
|
||
|
export const namespace = name;
|
||
|
export const weChatApiOauthBaseUrl = 'https://api.weixin.qq.com/sns/oauth2/';
|
||
|
export const weChatApiOauthScope = 'snsapi_login';
|