UNPKG

@vuex-orm/core

Version:

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

19 lines (18 loc) 351 B
export default class Uid { /** * Count to create a unique id. */ private static count; /** * Prefix string to be used for the id. */ private static prefix; /** * Generate an UUID. */ static make(): string; /** * Reset the count to 0. */ static reset(): void; }