You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
574 B
15 lines
574 B
/**
|
|
* Ono supports custom formatters for error messages. In Node.js, it defaults
|
|
* to the `util.format()` function. In browsers, it defaults to `Array.join()`.
|
|
*
|
|
* The Node.js functionality can be used in a web browser via a polyfill,
|
|
* such as "format-util".
|
|
*
|
|
* @see https://github.com/tmpfs/format-util
|
|
*/
|
|
export declare const format = false;
|
|
/**
|
|
* The `util.inspect()` functionality only applies to Node.js.
|
|
* We return the constant `false` here so that the Node-specific code gets removed by tree-shaking.
|
|
*/
|
|
export declare const addInspectMethod = false;
|
|
|