11 lines
299 B
TypeScript
11 lines
299 B
TypeScript
export const CACHE_FILENAMES = {
|
|
products: 'products.json',
|
|
stores: 'stores.json',
|
|
slots: 'slots.json',
|
|
availability: 'availability.json',
|
|
essentialConsts: 'essential-consts.json',
|
|
banners: 'banners.json',
|
|
} as const
|
|
|
|
// Re-export all types from the types folder
|
|
export * from './types'
|