Skip to content

Commit

Permalink
chore: lint code
Browse files Browse the repository at this point in the history
  • Loading branch information
maelgangloff committed May 8, 2024
1 parent ada296a commit 6962df4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/models/Common/SkolengoConfig.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { AxiosInstance } from 'axios'
import type { TokenSet, TokenSetParameters } from 'openid-client'
import type { TokenSetParameters } from 'openid-client'

export interface SkolengoConfig {
/**
Expand All @@ -9,7 +9,7 @@ export interface SkolengoConfig {
onTokenRefresh: (tokenSet: TokenSetParameters) => void
/**
* Callback à appeller pour rafraîchir le TokenSet
* @param {TokenSet} tokenSet Ancien TokenSet
* @param {TokenSet} tokenSet Ancien TokenSet
* @returns {TokenSet} Nouveau TokenSet
*/
refreshToken?: (tokenSet: TokenSetParameters) => Promise<TokenSetParameters>
Expand Down
2 changes: 1 addition & 1 deletion src/models/Errors/SkolengoError.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export interface SkolengoErrorBody {
status: string
/**
* Identifiant du type d'erreur
*
*
* Exemple :
* - PRONOTE_RESOURCES_NOT_READY
*/
Expand Down
2 changes: 1 addition & 1 deletion src/models/School/SchoolInfo.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { Attachment } from './Attachment'
import type { User } from '../Common'
import type { School } from './School'
import { TechnicalUser } from '../Messaging'
import type { TechnicalUser } from '../Messaging'

export interface SchoolInfo {
/**
Expand Down

0 comments on commit 6962df4

Please sign in to comment.