forked from jsnbuchanan/crowd-funder-for-time-pwa
- Fix Vue template syntax in App.vue by using proper event handler format - Update Vite config to properly handle ESM imports and crypto modules - Add manual chunks for better code splitting - Improve environment variable handling in vite-env.d.ts - Fix TypeScript linting errors in App.vue
15 lines
359 B
TypeScript
15 lines
359 B
TypeScript
export interface EndorserRateLimits {
|
|
doneClaimsThisWeek: string
|
|
doneRegistrationsThisMonth: string
|
|
maxClaimsPerWeek: string
|
|
maxRegistrationsPerMonth: string
|
|
nextMonthBeginDateTime: string
|
|
nextWeekBeginDateTime: string
|
|
}
|
|
|
|
export interface ImageRateLimits {
|
|
doneImagesThisWeek: string
|
|
maxImagesPerWeek: string
|
|
nextWeekBeginDateTime: string
|
|
}
|