Files
mini-programs/types/publishBall.ts
2025-08-18 23:34:24 +08:00

16 lines
380 B
TypeScript

import { ActivityType, TimeRange } from "@/components/index.types"
export interface PublishBallFormData {
activityType: ActivityType
title: string
timeRange: TimeRange
fee: string
location: string
gameplay: string
minParticipants: number
maxParticipants: number
ntpLevel: number[]
additionalRequirements: string
autoDegrade: boolean
}