import { ProductTableFileCell } from "../file-types"; export interface Query { readonly trees: ReadonlyArray; readonly marker: Marker; readonly products: ReadonlyArray; readonly product: Product | null; } export interface Tree { readonly name: string; } export interface Marker { readonly markerName: string; readonly releaseId?: string; readonly releaseName?: string; readonly tx?: string; } export interface Product { readonly id: string; readonly key: string; readonly name: string; readonly retired: boolean; readonly modules: Modules; } export interface Modules { readonly [module: string]: Module; } export interface Module { readonly [table: string]: ReadonlyArray; } export interface TableRow { readonly [column: string]: ProductTableFileCell; } export interface TableRowWithProductFileName { readonly __$productFileName$: string; readonly [column: string]: ProductTableFileCell; } //# sourceMappingURL=schema-types.d.ts.map