This commit is contained in:
2024-03-22 03:47:51 +05:30
parent 8bcf3d211e
commit 89819f6fe2
28440 changed files with 3211033 additions and 2 deletions

15
node_modules/estree-util-value-to-estree/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,15 @@
import { type Expression } from 'estree';
export interface Options {
/**
* If true, treat objects that have a prototype as plain objects.
*/
instanceAsObject?: boolean;
}
/**
* Convert a value to an ESTree node
*
* @param value The value to convert
* @param options Additional options to configure the output.
* @returns The ESTree node.
*/
export declare function valueToEstree(value: unknown, options?: Options): Expression;