interfaces.ts 222 Bytes
export interface IComponentWithPermissions {
    permissions: () => string[];
}

export interface IModalComponent {
    $uibModal: ng.ui.bootstrap.IModalService;
    modalInstance: ng.ui.bootstrap.IModalServiceInstance;
}