UNPKG

@vuex-orm/core

Version:

The Vuex plugin to enable Object-Relational Mapping access to the Vuex Store.

10 lines (9 loc) 364 B
import NormalizedData from '../../data/NormalizedData'; import Query from '../../query/Query'; export default class PivotCreator { /** * Create an intermediate entity if the data contains any entities that * require it for example `belongsTo` or `morphMany`. */ static process(query: Query, data: NormalizedData): NormalizedData; }