6 lines
172 B
TypeScript
6 lines
172 B
TypeScript
type Channel = 'wechat' | 'noLogo' | 'rednoteLogo' | 'miniHeader';
|
|
const channel: Channel = 'wechat';
|
|
|
|
export const CHANNEL = channel;
|
|
|
|
export const APP_NAME = '涂鸦丫'; |