18 lines
355 B
TypeScript
18 lines
355 B
TypeScript
|
|
import { tools } from '@src/store/Modules/tools'
|
||
|
|
import { toolsext } from '@src/store/Modules/toolsext'
|
||
|
|
|
||
|
|
export interface IEstimate {
|
||
|
|
id: number
|
||
|
|
title: string
|
||
|
|
advanced?: boolean
|
||
|
|
description?: string
|
||
|
|
viewlist?: number[]
|
||
|
|
listsel?: number
|
||
|
|
qtaName?: string
|
||
|
|
icon?: string
|
||
|
|
numpag?: number
|
||
|
|
qta?: number
|
||
|
|
price: number
|
||
|
|
checksel?: boolean
|
||
|
|
}
|