freshyo/packages/shared/index.ts
2026-03-24 20:50:14 +05:30

12 lines
344 B
TypeScript

export const CACHE_FILENAMES = {
products: 'products.json',
stores: 'stores.json',
slots: 'slots.json',
essentialConsts: 'essential-consts.json',
banners: 'banners.json',
} as const
export type CacheFilename = typeof CACHE_FILENAMES[keyof typeof CACHE_FILENAMES]
// Re-export all types from the types folder
export * from './types'