UNPKG

@modern-js-reduck/store

Version:

The meta-framework suite designed from scratch for frontend-focused modern web development.

11 lines 452 B
import { Model } from "../types"; export declare const initializerSymbol: unique symbol; export declare const getModelInitializer: (_model: Model) => any; export declare const isModel: (_model: any) => _model is Model; export declare const getComputedDepModels: (computed: any) => Model[]; export declare enum StateType { Primitive = "primitive", Array = "array", Object = "object", } export declare const getStateType: (value: any) => StateType;