import type { HandlerContext } from "../types.js"; import { type DependencyPinningSource } from "../../../transforms/esm/package-registry.js"; export interface HandlerDependencyPinningIdentity { readonly projectId?: string; readonly projectSlug?: string; readonly contentSourceId?: string; readonly releaseId?: string; readonly branch?: string | null; } /** * Resolve the canonical project/content identity shared by document, data, * module, and internal asset requests. */ export declare function getHandlerDependencyPinningIdentity(ctx: HandlerContext): HandlerDependencyPinningIdentity; export declare function createHandlerDependencyPinningSource(ctx: HandlerContext): DependencyPinningSource; //# sourceMappingURL=dependency-pinning-source.d.ts.map