import { type IParser } from './parser'; /** Force output static type evaluation for Arrays */ export type StaticEnsure = T extends infer R ? R : never; /** Infers the Output Parameter for a Parser */ export type StaticParser = (Parser extends IParser ? Output : unknown);