UNPKG

zod-server-actions

Version:

Simple utility library to create server actions in Next.js

13 lines (12 loc) 320 B
export class Config { constructor(retries, contextFn, context, onError, debug) { this.retries = retries; this.context = context; this.contextFn = contextFn; this.onError = onError; this.debug = debug; } setConfig(config) { Object.assign(this, config); } }