Files
Shifted/node_modules/next/dist/server/app-render/rsc/taint.d.ts
2026-02-10 01:14:19 +00:00

6 lines
328 B
TypeScript

type Reference = object;
type TaintableUniqueValue = string | bigint | ArrayBufferView;
export declare const taintObjectReference: (message: string | undefined, object: Reference) => void;
export declare const taintUniqueValue: (message: string | undefined, lifetime: Reference, value: TaintableUniqueValue) => void;
export {};