fix(napi-derive-backend): typegen issue when arg is mut
This commit is contained in:
parent
9a8484144c
commit
fe8f061f1f
4 changed files with 8 additions and 2 deletions
examples/napi
|
@ -43,7 +43,7 @@ Generated by [AVA](https://avajs.dev).
|
|||
export function readPackageJson(): PackageJson␊
|
||||
export function getPackageJsonName(packageJson: PackageJson): string␊
|
||||
export function contains(source: string, target: string): boolean␊
|
||||
export function concatStr(mutS: string): string␊
|
||||
export function concatStr(s: string): string␊
|
||||
export function concatUtf16(s: string): string␊
|
||||
export function concatLatin1(s: string): string␊
|
||||
export function withoutAbortController(a: number, b: number): Promise<number>␊
|
||||
|
|
Binary file not shown.
2
examples/napi/index.d.ts
vendored
2
examples/napi/index.d.ts
vendored
|
@ -33,7 +33,7 @@ interface PackageJson {
|
|||
export function readPackageJson(): PackageJson
|
||||
export function getPackageJsonName(packageJson: PackageJson): string
|
||||
export function contains(source: string, target: string): boolean
|
||||
export function concatStr(mutS: string): string
|
||||
export function concatStr(s: string): string
|
||||
export function concatUtf16(s: string): string
|
||||
export function concatLatin1(s: string): string
|
||||
export function withoutAbortController(a: number, b: number): Promise<number>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue