chore(bindings): Update types (#8912)

This commit is contained in:
Kenta Moriuchi 2024-05-05 10:08:20 +09:00 committed by GitHub
parent a9bab833ba
commit f1c2550d89
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -672,7 +672,7 @@ export interface TsParserConfig {
*/ */
decorators?: boolean; decorators?: boolean;
/** /**
* Defaults to `false` * @deprecated Always true because it's in ecmascript spec.
*/ */
dynamicImport?: boolean; dynamicImport?: boolean;
} }
@ -740,9 +740,29 @@ export interface EsParserConfig {
*/ */
topLevelAwait?: boolean; topLevelAwait?: boolean;
/** /**
* Defaults to `false` * @deprecated An alias of `importAttributes`
*/ */
importAssertions?: boolean; importAssertions?: boolean;
/**
* Defaults to `false`
*/
importAttributes?: boolean;
/**
* Defaults to `false`
*/
allowSuperOutsideMethod?: boolean;
/**
* Defaults to `false`
*/
allowReturnOutsideFunction?: boolean;
/**
* Defaults to `false`
*/
autoAccessors?: boolean;
/**
* Defaults to `false`
*/
explicitResourceManagement?: boolean;
} }
/** /**