wilddragon-site/node_modules/next/dist/server/dev/server-action-logger.d.ts

10 lines
229 B
TypeScript
Raw Normal View History

2026-04-17 15:51:01 -04:00
/**
* Format arguments array to a string for display
*/
export declare function formatArgs(args: unknown[]): string;
export interface ServerActionLogInfo {
functionName: string;
args: unknown[];
location: string;
}