Files
game-cards-poker-design/frontend/node_modules/element-plus/lib/components/time-select/src/utils.d.ts
Poker Design Developer 5dbcebf7a2 Fix frontend blank page issues
- Fix router import path in main.js
- Handle Django REST Framework pagination format in API calls
- Add getTemplates function to project API
- Restart frontend development server
2026-05-31 18:40:56 +08:00

12 lines
493 B
TypeScript

//#region ../../packages/components/time-select/src/utils.d.ts
interface Time {
hours: number;
minutes: number;
}
declare const parseTime: (time: string) => null | Time;
declare const compareTime: (time1: string, time2: string) => number;
declare const padTime: (time: number | string) => string;
declare const formatTime: (time: Time) => string;
declare const nextTime: (time: string, step: string) => string;
//#endregion
export { compareTime, formatTime, nextTime, padTime, parseTime };