/** * Utility type that returns `X.Y` if it exists, otherwise defaults to fallback type `Z`, or `any` * * @internal * Redeclared from /lib to avoid circular dependency issues */ export type Exists = Y extends keyof X ? X[Y] : Z; //# sourceMappingURL=types.d.ts.map