You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When compiling an application I'm getting the following error:
[TypeScript error: [path to frida-il2cpp-bridge]/dist/il2cpp/structs/gc.d.ts(12,6): Error TS2380: 'get' and 'set' accessor must have the same type.] {
fileName: '[path to frida-il2cpp-bridge]/dist/il2cpp/structs/gc.d.ts',
line: 12,
column: 16
inputs: Set() {
[files]
}
}
Reviewing gc.d.ts the issue appears to be on maxTimeSlice where the getter returns an Int64 where the setter takes number | Int64. There's some discussion of this issue for TypeScript at microsoft/TypeScript#2521. Or is there some workaround to this?
The text was updated successfully, but these errors were encountered:
When compiling an application I'm getting the following error:
Reviewing
gc.d.ts
the issue appears to be onmaxTimeSlice
where the getter returns anInt64
where the setter takesnumber | Int64
. There's some discussion of this issue for TypeScript at microsoft/TypeScript#2521. Or is there some workaround to this?The text was updated successfully, but these errors were encountered: