Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
phoenix-ru committed Sep 5, 2024
1 parent a7b7802 commit 5c07aeb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions playground-local/config/AuthRefreshHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'
)
}
}
Expand Down

0 comments on commit 5c07aeb

Please sign in to comment.