fix(core): update

This commit is contained in:
2022-01-24 06:39:36 +01:00
parent be505ee915
commit f7887a6663
12 changed files with 19435 additions and 3516 deletions

View File

@@ -5,7 +5,7 @@ import { StatePart } from './smartstate.classes.statepart';
* Smartstate takes care of providing state
*/
export class Smartstate<StatePartNameType> {
public statePartMap: { [key: string]: StatePart<StatePartNameType, unknown> } = {};
public statePartMap: { [key: string]: StatePart<StatePartNameType, any> } = {};
constructor() {}