Skip to content

Commit

Permalink
chore(bindings): Update types (#8912)
Browse files Browse the repository at this point in the history
  • Loading branch information
petamoriken authored May 5, 2024
1 parent a9bab83 commit f1c2550
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions packages/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ export interface TsParserConfig {
*/
decorators?: boolean;
/**
* Defaults to `false`
* @deprecated Always true because it's in ecmascript spec.
*/
dynamicImport?: boolean;
}
Expand Down Expand Up @@ -740,9 +740,29 @@ export interface EsParserConfig {
*/
topLevelAwait?: boolean;
/**
* Defaults to `false`
* @deprecated An alias of `importAttributes`
*/
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;
}

/**
Expand Down

0 comments on commit f1c2550

Please sign in to comment.