Asymmetrik/mean2-starter

View on GitHub
src/client/app/access-checker/view-cache-entry.component.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Component } from '@angular/core';

import { BsModalRef } from 'ngx-bootstrap';

import { CacheEntry } from './cache-entries.service';

@Component({
    templateUrl: 'view-cache-entry.component.html'
})
export class ViewCacheEntryModal {

    cacheEntry: CacheEntry;

    constructor(
        public modalRef: BsModalRef
    ) {}
}