Skip to content

Commit 572802c

Browse files
committed
fix: lint
1 parent 5159160 commit 572802c

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

src/client/callers/authSignToken.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ const authSignToken = new UnaryCaller<
99
CallerTypes['output']
1010
>();
1111

12-
export default authSignToken;
12+
export default authSignToken;

src/client/errors.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class ErrorClientVerificationFailed<T> extends ErrorClientService<T> {
5050
exitCode = sysexits.USAGE;
5151
}
5252

53-
class ErrorAuthentication<T> extends ErrorPolykey<T> { }
53+
class ErrorAuthentication<T> extends ErrorPolykey<T> {}
5454

5555
class ErrorAuthenticationInvalidToken<T> extends ErrorAuthentication<T> {
5656
static description = 'Incoming token does not match its signature';

src/client/types.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,16 @@ import type {
1919
JWKEncrypted,
2020
PublicKeyJWK,
2121
} from '../keys/types.js';
22-
import type Token from '../tokens/Token.js';
2322
import type { Notification } from '../notifications/types.js';
2423
import type { ProviderToken } from '../identities/types.js';
24+
import type { TokenPayload, SignedTokenEncoded } from '../tokens/types.js';
2525
import type { AuditMetricGetTypeOverride } from './callers/auditMetricGet.js';
2626
import type {
2727
NodeContact,
2828
NodeAddress,
2929
NodeContactAddressData,
3030
} from '../nodes/types.js';
3131
import type { AuditEventsGetTypeOverride } from './callers/auditEventsGet.js';
32-
import { TokenPayload, SignedTokenJSON, SignedTokenEncoded, TokenPayloadEncoded } from '#src/types.js';
3332

3433
type ClientRPCRequestParams<T extends JSONObject = JSONObject> =
3534
JSONRPCResponseResult<

0 commit comments

Comments
 (0)