| 1234567891011121314151617181920212223242526272829303132333435363738 |
- /// <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 namespace JSX {
- interface IntrinsicElements {
- 'contact-cell': Partial<{
- plugid: string;
- startmessage: (e: any) => void;
- completemessage: (e: any) => void;
- style: React.CSSProperties;
- children?: any;
- styleType?:number;
- }>
- 'custom-paragraph': Partial<{
- novelManagerId: number;
- bookId: string;
- chapterIndex: number;
- chapterId: string;
- paragraphIndex: number;
- originalId: string;
- ext: string; // 透传参数,JSON 字符串格式
- style: React.CSSProperties;
- }>
- }
- }
- declare namespace NodeJS {
- interface ProcessEnv {
- TARO_ENV: 'weapp' | 'swan' | 'alipay' | 'h5' | 'rn' | 'tt' | 'quickapp' | 'qq' | 'jd'
- }
- }
|