2024-06-25 10:27:51 +08:00
|
|
|
/* eslint-disable */
|
|
|
|
/* prettier-ignore */
|
|
|
|
// @ts-nocheck
|
|
|
|
// Generated by vite-plugin-uni-pages
|
|
|
|
|
|
|
|
interface NavigateToOptions {
|
2024-11-12 15:28:14 +08:00
|
|
|
url: "/pages/ycysp/coupon" |
|
|
|
|
"/pages/ycysp/pay" |
|
|
|
|
"/pages/ycysp/component/member" |
|
|
|
|
"/pages/ycysp/component/recharge-item" |
|
|
|
|
"/pages/ycysp/component/ticket-recieve";
|
2024-06-25 10:27:51 +08:00
|
|
|
}
|
|
|
|
interface RedirectToOptions extends NavigateToOptions {}
|
|
|
|
|
|
|
|
interface SwitchTabOptions {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
type ReLaunchOptions = NavigateToOptions | SwitchTabOptions;
|
|
|
|
|
|
|
|
declare interface Uni {
|
|
|
|
navigateTo(options: UniNamespace.NavigateToOptions & NavigateToOptions): void;
|
|
|
|
redirectTo(options: UniNamespace.RedirectToOptions & RedirectToOptions): void;
|
|
|
|
switchTab(options: UniNamespace.SwitchTabOptions & SwitchTabOptions): void;
|
|
|
|
reLaunch(options: UniNamespace.ReLaunchOptions & ReLaunchOptions): void;
|
|
|
|
}
|