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.
25 lines
655 B
25 lines
655 B
3 months ago
|
interface FormatOptions {
|
||
|
/**
|
||
|
* A String or Number object that's used to insert white space into the output JSON string for readability purposes.
|
||
|
*
|
||
|
* When provided, identation won't be auto detected anymore.
|
||
|
*/
|
||
|
indent?: string | number;
|
||
|
/**
|
||
|
* Set to `false` to skip indentation preservation.
|
||
|
*/
|
||
|
preserveIndentation?: boolean;
|
||
|
/**
|
||
|
* Set to `false` to skip whitespace preservation.
|
||
|
*/
|
||
|
preserveWhitespace?: boolean;
|
||
|
/**
|
||
|
* The number of characters to sample from the start of the text.
|
||
|
*
|
||
|
* Default: 1024
|
||
|
*/
|
||
|
sampleSize?: number;
|
||
|
}
|
||
|
|
||
|
export type { FormatOptions as F };
|