import { Dependency } from "./dependency.js";
import { reaction } from "./vanilla/index.js";
export class DepFactory {
static ofValue(value, config) {
return new Dependency(value, config);
}
static ofReaction(fn, config) {
return reaction(fn, config);
}
}