Skip to content

Commit 2384744

Browse files
committed
test: add overrides-with-rename
1 parent c9a7e0d commit 2384744

4 files changed

Lines changed: 15 additions & 0 deletions

File tree

File renamed without changes.
File renamed without changes.
File renamed without changes.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// index.d.ts
2+
3+
//#region tests/fixtures/overrides-with-rename/b.d.ts
4+
declare function autobind$1(): typeof autobind;
5+
declare function autobind$1(constructor: Function): void;
6+
declare function autobind$1(prototype: typeof autobind, name: string, descriptor: PropertyDescriptor): PropertyDescriptor;
7+
8+
//#endregion
9+
//#region tests/fixtures/overrides-with-rename/a.d.ts
10+
declare function autobind(): typeof autobind$1;
11+
declare function autobind(constructor: Function): void;
12+
declare function autobind(prototype: typeof autobind$1, name: string, descriptor: PropertyDescriptor): PropertyDescriptor;
13+
14+
//#endregion
15+
export { autobind as A, autobind$1 as B };

0 commit comments

Comments
 (0)