lint: stricter linting rules

This commit is contained in:
Adhiraj Singh
2022-03-01 16:32:14 +05:30
parent c00c3da313
commit de7d1002a9
39 changed files with 534 additions and 526 deletions

View File

@@ -13,10 +13,10 @@ export type SignalIdentity = {
identifierKey: Uint8Array
}
export type LTHashState = {
export type LTHashState = {
version: number
hash: Buffer
indexValueMap: {
indexValueMap: {
[indexMacBase64: string]: { valueMac: Uint8Array | Buffer }
}
}
@@ -30,7 +30,7 @@ export type SignalCreds = {
export type AuthenticationCreds = SignalCreds & {
readonly noiseKey: KeyPair
readonly advSecretKey: string
me?: Contact
account?: proto.IADVSignedDeviceIdentity
signalIdentities?: SignalIdentity[]