bpms_site/.svn/pristine/75/759523611eff5117d22538e650125e908af31206.svn-base
2025-11-02 16:38:49 +03:30

7 lines
411 B
Plaintext

import type { CacheNode } from '../../../shared/lib/app-router-context.shared-runtime';
import type { FlightSegmentPath } from '../../../server/app-render/types';
/**
* Fill cache up to the end of the flightSegmentPath, invalidating anything below it.
*/
export declare function invalidateCacheBelowFlightSegmentPath(newCache: CacheNode, existingCache: CacheNode, flightSegmentPath: FlightSegmentPath): void;