Initial commit: GamePortrait 竖屏版 - 深色豪华主题

This commit is contained in:
li
2026-01-16 17:47:53 +08:00
commit 40976e4b45
26611 changed files with 2843638 additions and 0 deletions
+45
View File
@@ -0,0 +1,45 @@
import { type PropType } from 'vue';
import { type Numeric } from '../utils';
export type CouponInfo = {
id: Numeric;
name: string;
endAt: number;
value: number;
startAt: number;
reason?: string;
discount?: number;
unitDesc?: string;
condition?: string;
valueDesc?: string;
description: string;
denominations?: number;
originCondition?: number;
};
declare const _default: import("vue").DefineComponent<{
chosen: BooleanConstructor;
coupon: {
type: PropType<CouponInfo>;
required: true;
};
disabled: BooleanConstructor;
currency: {
type: PropType<string>;
default: string;
};
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
chosen: BooleanConstructor;
coupon: {
type: PropType<CouponInfo>;
required: true;
};
disabled: BooleanConstructor;
currency: {
type: PropType<string>;
default: string;
};
}>>, {
disabled: boolean;
currency: string;
chosen: boolean;
}>;
export default _default;