UNPKG

@tanstack/start-client-core

Version:

Modern and scalable routing for React applications

14 lines (10 loc) 305 B
import type { HydrationStrategy } from './types' const neverType = 'never' const neverStrategy: HydrationStrategy<typeof neverType, false> = { _t: neverType, _d: () => true, } /* @__NO_SIDE_EFFECTS__ */ export function never(): HydrationStrategy<typeof neverType, false> { return neverStrategy }