| 32 | export type PlainObject<T> = Record<string, T>; |
| 33 | export type Input = unknown[]; |
| 34 | export interface ColumnOption { |
| 35 | key: string | (string | number)[]; |
| 36 | header?: string; |
| 37 | } |
| 38 | export interface CastingContext { |
| 39 | readonly column?: number | string; |
| 40 | readonly header: boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected