/
IvanRyabchenko
/
random-coffee-admin
Обзор
Документация
Войти
/
IvanRyabchenko
/
random-coffee-admin
Код
Запросы
1
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
develop
src/types/index.ts
45 строк
691 B
Ivan Ryabchenko
feat(products): add imageUrl thumbnail to list and optional field to create form
17 май 2026, 10:03
17 май 2026, 10:03
388a3e6
Код
Авторство
О чём код?
export interface AuthResponse { token: string } export interface StatsResponse { count: number } export interface PaginatedResponse<T> { data: T[] total: number page: number limit: number } export interface Category { id: string name: string createdAt: string updatedAt: string } export interface Product { id: string name: string description?: string price: string imageUrl?: string categoryId: string category: Category createdAt: string updatedAt: string } export interface CreateProductDto { name: string price: number categoryId: string description?: string imageUrl?: string } export interface CreateCategoryDto { name: string }