1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-08-15 23:40:32 +03:00

Linting Fix: Switch to function property

This commit is contained in:
Vadhvis 2024-07-09 11:39:37 +03:00
parent 4ed4d756c9
commit 2b65bb4b14

View File

@ -7,6 +7,6 @@ nodeCrypto.createDiffieHellman = browserDH.createDiffieHellman
// Declare function missing from @types
declare module 'ssh2' {
interface Client {
setNoDelay(enable?: boolean): this
setNoDelay: (enable?: boolean) => this
}
}
}