-
-
Notifications
You must be signed in to change notification settings - Fork 934
Closed
Labels
Description
Tested version: 0.16.3
require('oxc-transform').isolatedDeclaration('hello.ts', `
export abstract class Foo {
abstract foo(): void;
bar(): void {}
baz(): void {}
}
`);
{
sourceText: 'export declare abstract class Foo {\n' +
'\tabstract foo(): void;\n' +
'\tbaz(): void;\n' +
'}\n',
errors: []
}
Expected:
export declare abstract class Foo {
abstract foo(): void;
bar(): void {}
baz(): void {}
}Actual:
export declare abstract class Foo {
abstract foo(): void;
baz(): void {}
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
Type
Fields
Give feedbackPriority
None yet