UNPKG

@mui/internal-docs-infra

Version:

MUI Infra - internal documentation creation tools.

11 lines 536 B
/** * Utility function for serializing structured function arguments back to string format * This is the inverse of parseFunctionArguments - it takes structured data and creates * valid JavaScript/TypeScript function call arguments. */ import type { SplitArguments } from "./parseFunctionArguments.mjs"; /** * Serialize structured arguments back to a string representation * Uses JSON.stringify for object values for performance and reliability */ export declare function serializeFunctionArguments(args: SplitArguments): string;