wilddragon-site/node_modules/next/dist/server/dev/server-action-logger.d.ts
2026-04-17 15:51:01 -04:00

9 lines
229 B
TypeScript
Executable file

/**
* Format arguments array to a string for display
*/
export declare function formatArgs(args: unknown[]): string;
export interface ServerActionLogInfo {
functionName: string;
args: unknown[];
location: string;
}