Files
verify/frontend/node_modules/next/dist/server/app-render/rsc/taint.d.ts
Mohamed Mathar Irfan ed6610d5d8 Initial project upload
2026-07-28 17:57:02 +05:30

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