24 lines
699 B
TypeScript
24 lines
699 B
TypeScript
import Decimal from 'decimal.js'
|
|
|
|
import {i18nLocalesCodes} from '@/i18n-config'
|
|
import {locales} from '@/i18n/routing'
|
|
|
|
export type CategoryPageSqlSchema = {
|
|
productId: number
|
|
lang: string
|
|
slug?: string | null | undefined
|
|
image?: string | null | undefined
|
|
imageWidth?: number | null | undefined
|
|
imageHeight?: number | null | undefined
|
|
categoryId?: number
|
|
title: string
|
|
shortTitle?: string | null | undefined
|
|
description?: string | null | undefined
|
|
content?: string | null | undefined
|
|
headingTitle?: string | null | undefined
|
|
instruction?: string | null | undefined
|
|
categorySlug?: string | null | undefined
|
|
categoryTitle?: string | null | undefined
|
|
price?: string | null | Decimal
|
|
}
|