🎉 initiate project *astro_rewrite*

This commit is contained in:
sindrekjelsrud 2023-07-19 21:31:30 +02:00
parent ffd4d5e86c
commit 2ba37bfbe3
8658 changed files with 2268794 additions and 2538 deletions

31
node_modules/stringify-entities/lib/index.d.ts generated vendored Normal file
View file

@ -0,0 +1,31 @@
/**
* Encode special characters in `value`.
*
* @param {string} value
* Value to encode.
* @param {Options} [options]
* Configuration.
* @returns {string}
* Encoded value.
*/
export function stringifyEntities(
value: string,
options?: Options | undefined
): string
/**
* Encode special characters in `value` as hexadecimals.
*
* @param {string} value
* Value to encode.
* @param {LightOptions} [options]
* Configuration.
* @returns {string}
* Encoded value.
*/
export function stringifyEntitiesLight(
value: string,
options?: import('./core.js').CoreOptions | undefined
): string
export type Options = import('./core.js').CoreOptions &
import('./util/format-smart.js').FormatSmartOptions
export type LightOptions = import('./core.js').CoreOptions