Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
aedart committed Apr 3, 2024
1 parent 5e82b15 commit 742f939
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/support/src/facades/Facade.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default abstract class Facade
*/
static #resolved: Map<
Identifier,
any
any /* eslint-disable-line @typescript-eslint/no-explicit-any */
> = new Map();

/**
Expand Down Expand Up @@ -167,7 +167,9 @@ export default abstract class Facade
*
* @static
*/
public static swap(instance: any): void
public static swap(
instance: any /* eslint-disable-line @typescript-eslint/no-explicit-any */
): void
{
const identifier = this.getIdentifier();

Expand Down

0 comments on commit 742f939

Please sign in to comment.