7 lines
191 B
TypeScript
7 lines
191 B
TypeScript
export const UploadScences = {
|
|
Avatar: 'Avatar',
|
|
Product: 'Product',
|
|
Category: 'Category',
|
|
} as const
|
|
export type UploadScencesType = (typeof UploadScences)[keyof typeof UploadScences]
|