2026-05-31 13:54:31 +02:00

25 lines
398 B
JavaScript

import {
__name
} from "./chunk-PTVI3W5X.mjs";
// src/utils/imperativeState.ts
var ImperativeState = class {
/**
* @param init - Function that creates the default state.
*/
constructor(init) {
this.init = init;
this.records = this.init();
}
static {
__name(this, "ImperativeState");
}
reset() {
this.records = this.init();
}
};
export {
ImperativeState
};