@vuex-orm/core
Version:
The Vuex plugin to enable Object-Relational Mapping access to the Vuex Store.
10 lines (9 loc) • 348 B
TypeScript
import WhereBoolean from './WhereBoolean';
import WherePrimaryClosure from './WherePrimaryClosure';
import WhereSecondaryClosure from './WhereSecondaryClosure';
export interface Where {
field: string | number | WherePrimaryClosure;
value: string | number | WhereSecondaryClosure;
boolean: WhereBoolean;
}
export default Where;