diff options
Diffstat (limited to 'src/bun.js/scripts/class-definitions.ts')
-rw-r--r-- | src/bun.js/scripts/class-definitions.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/bun.js/scripts/class-definitions.ts b/src/bun.js/scripts/class-definitions.ts index d9d2fa1d1..8414cf18f 100644 --- a/src/bun.js/scripts/class-definitions.ts +++ b/src/bun.js/scripts/class-definitions.ts @@ -9,7 +9,8 @@ export type Field = return: string; args?: [string, string] | [string, string, string] | [string]; }; - }; + } + | { internal: true }; export interface ClassDefinition { name: string; @@ -21,7 +22,7 @@ export interface ClassDefinition { JSType?: string; noConstructor?: boolean; estimatedSize?: boolean; - isEventEmitter?: boolean; + hasPendingActivity?: boolean; } export function define( |