/** * Utility type to ensure that `T` extends `U`. * * @public */ export type EnsureExtends = T extends U ? T : never; //# sourceMappingURL=EnsureExtends.d.ts.map