makearmy-app/node_modules/next/dist/server/app-render/rsc/taint.d.ts

6 lines
328 B
TypeScript
Raw Normal View History

2025-09-22 10:37:53 -04:00
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 {};