You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
528 B
20 lines
528 B
/// <reference types="@tarojs/taro" /> |
|
|
|
declare module '*.png' |
|
declare module '*.gif' |
|
declare module '*.jpg' |
|
declare module '*.jpeg' |
|
declare module '*.svg' |
|
declare module '*.css' |
|
declare module '*.less' |
|
declare module '*.scss' |
|
declare module '*.sass' |
|
declare module '*.styl' |
|
|
|
declare namespace NodeJS { |
|
interface ProcessEnv { |
|
TARO_ENV: 'weapp' | 'swan' | 'alipay' | 'h5' | 'rn' | 'tt' | 'quickapp' | 'qq' | 'jd' |
|
} |
|
} |
|
|
|
declare function defineAppConfig(config: import('@tarojs/taro').Config): import('@tarojs/taro').Config
|
|
|