wilddragon-site/node_modules/next/dist/server/app-render/rsc/taint.d.ts
2026-04-17 15:51:01 -04:00

5 lines
328 B
TypeScript
Executable file

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 {};