import { IsDepthExhausted } from "./Depth.js"; import { IsLeafType } from "./IsLeafType.js"; /** Stop if the depth is exhausted or the type is a leaf type. */ export type ShouldTerminatePathing = IsDepthExhausted extends true ? true : IsLeafType extends true ? true : false; //# sourceMappingURL=ShouldTerminatePathing.d.ts.map