0a5ab058a6
- Angular 12 application with PrimeNG components - 5 existing Cypress e2e test suites - SCSS styling with BEM naming convention - i18n support (10 languages) - Leaflet map integration - Complete component hierarchy and routing structure This baseline will be used for Angular → React migration.
25 lines
655 B
TypeScript
25 lines
655 B
TypeScript
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 };
|