25 lines
398 B
JavaScript
25 lines
398 B
JavaScript
import {
|
|
__name
|
|
} from "./chunk-DLQEHMXD.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
|
|
};
|