12 lines
344 B
TypeScript
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'
|