/** * A utility type that represents a value that can be null. * @typeParam T - The type that can be nullable. */ export type Nullable = T | null; export type ChannelSortField = "channelNumber" | "channelSelector" | "key" | "name" | "profile" | "provider" | "stationId"; export type SortDirection = "asc" | "desc";