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' ) } }