Skip to content

Commit 2c77af3

Browse files
committed
refactor(undo/redo): move StackItem type definition to with-undo-redo.ts
1 parent b1aa283 commit 2c77af3

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

libs/ngrx-toolkit/src/lib/undo-redo/models/stack-item.ts

Lines changed: 0 additions & 1 deletion
This file was deleted.

libs/ngrx-toolkit/src/lib/undo-redo/with-undo-redo.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ import {
1212
} from '@ngrx/signals';
1313
import { capitalize } from '../with-data-service';
1414
import { ClearUndoRedoOptions } from './clear-undo-redo';
15-
import { StackItem } from './models/stack-item';
15+
16+
export type StackItem = Record<string, unknown>;
1617

1718
export type NormalizedUndoRedoOptions = {
1819
maxStackSize: number;

0 commit comments

Comments
 (0)