/**
 * The configuration interface for the entity store
 * defines the strings for the ID Key and Global ID key.
 */
export interface StoreConfig {
    idKey: string;
    guidKey: string;
}
