Files
ylst-h5/env.d.ts
Huangzhe 0685c46500 feat: 更新广告页面和路由跳转逻辑
1. 添加了banner请求相关的类型定义和hooks
2. 更新了广告页面的路由跳转逻辑,支持传递code参数
3. 修改了相关组件的导入和使用方式
4. 更新了类型定义文件以支持新的功能
5. 优化了图片轮播组件的交互逻辑
2025-05-22 17:28:07 +08:00

13 lines
282 B
TypeScript

/// <reference types="vite/client" />
declare module '*.vue' {
import {DefineComponent} from 'vue';
const component: DefineComponent<{}, {}, any>;
export default component;
}
interface Window {
ReactNativeWebView: {
postMessage: (message: string) => void;
};
}