stringiful
Version:
Easy to use stringify function with built-in configurable formatters
28 lines • 669 B
TypeScript
declare const config: {
stringifyDefaultOptions: {
inspectOptions: {
depth: number;
breakLength: number;
};
};
formattersDefaultParams: {
string: {
maxLength: number;
};
date: {
timezone: string;
locale: string;
};
axiosError: {
maxResponseDataLength: number;
maxRequestDataLength: number;
allowedProperties: string[];
};
error: {
maxMessageLength: number;
allowedProperties: string[];
};
};
};
export default config;
//# sourceMappingURL=index.d.ts.map