hisptz/90-90-90-cascade-graph-widget

View on GitHub
src/app/core/models/http-config.model.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface HttpConfig {
    includeVersionNumber?: boolean;
    preferPreviousApiVersion?: boolean;
    useRootUrl?: boolean;
    isExternalLink?: boolean;
    useIndexDb?: boolean;
    indexDbConfig?: {
        schema: string;
    };
}
export interface IndexDbSchema {
    name: string;
    keyPath: string;
}