import { BaseReflection, ReflectionKind } from '../reflection'; export interface InventoryReflection extends BaseReflection { name: string; kind: ReflectionKind.Inventory; packages: InventoryPackage[]; } export interface InventoryPackage { name: string; description: string; versions: string[]; } //# sourceMappingURL=reflection.d.ts.map