Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
REllEK-IO committed Oct 19, 2023
1 parent e8048bc commit 7eeb316
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/concepts/experiment/experiment.concept.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const createExperimentState = (): ExperimentState => {
};

export const createExperimentConcept = (
state: any,
state: unknown,
qualities?: Quality[],
principles?: PrincipleFunction[],
mode?: Mode[]) => {
Expand Down
2 changes: 1 addition & 1 deletion src/concepts/ownership/ownership.mode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { permissiveMode, blockingMode } from '../axium/axium.mode';
import { checkIn, clearStubs, ownershipShouldBlock, updateAddToPendingActions } from '../../model/ownership';
import { ActionStrategy, strategyFailed } from '../../model/actionStrategy';
import { UnifiedSubject } from '../../model/stagePlanner';
import { AppendActionListToDialogPayload, axiumAppendActionListToDialog, axiumAppendActionListToDialogType } from '../axium/qualities/appendActionListToDialog.quality';
import { axiumAppendActionListToDialog } from '../axium/qualities/appendActionListToDialog.quality';
import { AxiumState } from '../axium/axium.concept';
import { failureConditions, strategyData_appendFailure } from '../../model/actionStrategyData';

Expand Down
4 changes: 3 additions & 1 deletion src/model/debounceAction.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* eslint-disable @typescript-eslint/no-non-null-assertion */
/* eslint-disable @typescript-eslint/no-explicit-any */
import {
MonoTypeOperatorFunction,
Observable,
Expand Down Expand Up @@ -93,7 +95,7 @@ function createOperatorSubscriber<T>(
destination: Subscriber<any>,
onNext?: (value: T) => void,
onComplete?: () => void,
onError?: (err: any) => void,
onError?: (err: unknown) => void,
onFinalize?: () => void
): Subscriber<T> {
return new OperatorSubscriber(destination, onNext, onComplete, onError, onFinalize);
Expand Down

0 comments on commit 7eeb316

Please sign in to comment.