Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
aedart committed Mar 12, 2024
1 parent f28de53 commit 40977e8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
12 changes: 10 additions & 2 deletions packages/contracts/src/container/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,11 @@ export type ExtendCallback<
*
* Callback to be invoked before a binding is resolved.
*/
export type BeforeResolvedCallback = (identifier: Identifier, args: any[], container: Container) => void;
export type BeforeResolvedCallback = (
identifier: Identifier,
args: any[], /* eslint-disable-line @typescript-eslint/no-explicit-any */
container: Container
) => void;

/**
* After Resolved Callback
Expand All @@ -50,4 +54,8 @@ export type BeforeResolvedCallback = (identifier: Identifier, args: any[], conta
*/
export type AfterResolvedCallback<
Value = any, /* eslint-disable-line @typescript-eslint/no-explicit-any */
> = (identifier: Identifier, resolved: Value, container: Container) => void;
> = (
identifier: Identifier,
resolved: Value,
container: Container
) => void;
2 changes: 1 addition & 1 deletion packages/support/src/ArbitraryData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default class ArbitraryData extends AbstractConcern implements HasArbitra
*
* @private
*/
#data: Record<PropertyKey, any> = {};
#data: Record<PropertyKey, any> = {}; /* eslint-disable-line @typescript-eslint/no-explicit-any */

/**
* Set value for key
Expand Down

0 comments on commit 40977e8

Please sign in to comment.