Files
epg/scripts/types/htmlTable.d.ts
2025-10-22 02:27:22 +03:00

18 lines
339 B
TypeScript

import { Collection } from '@freearhey/core'
export interface HTMLTableColumn {
name: string
nowrap?: boolean
align?: string
colspan?: number
}
export interface HTMLTableDataItem {
value: string
nowrap?: boolean
align?: string
colspan?: number
}
export type HTMLTableRow = Collection<HTMLTableDataItem>