From 5c07aeb5a08baabd5ca29d98f6d2591875559543 Mon Sep 17 00:00:00 2001 From: Marsel Shaikhin Date: Thu, 5 Sep 2024 18:49:01 +0200 Subject: [PATCH] chore: fix lint --- playground-local/config/AuthRefreshHandler.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/playground-local/config/AuthRefreshHandler.ts b/playground-local/config/AuthRefreshHandler.ts index fba813fa..037cf687 100644 --- a/playground-local/config/AuthRefreshHandler.ts +++ b/playground-local/config/AuthRefreshHandler.ts @@ -2,14 +2,14 @@ import type { RefreshHandler } from '../../' // You may also use a plain object with `satisfies RefreshHandler`, of course! class CustomRefreshHandler implements RefreshHandler { - init (): void { + init(): void { console.info('Use the full power of classes to customize refreshHandler!') } - destroy (): void { + destroy(): void { console.info( - 'Hover above class properties or go to their definition ' + - 'to learn more about how to craft a refreshHandler' + 'Hover above class properties or go to their definition ' + + 'to learn more about how to craft a refreshHandler' ) } }