mirror of
https://github.com/iptv-org/epg.git
synced 2026-06-17 01:58:32 +02:00
18 lines
339 B
TypeScript
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>
|