@abp/ng.permission-management
Version:
ABP Framework is a complete open-source infrastructure to create modern web applications by following the best practices and conventions of software development. This package is a part of the [ABP Framework](https://abp.io) and contains client-side files.
17 lines (16 loc) • 570 B
TypeScript
import { GetPermissionListResultDto } from '@abp/ng.permission-management/proxy';
import { EventEmitter } from '@angular/core';
export declare namespace PermissionManagement {
interface State {
permissionRes: GetPermissionListResultDto;
}
interface PermissionManagementComponentInputs {
visible: boolean;
readonly providerName: string;
readonly providerKey: string;
readonly hideBadges: boolean;
}
interface PermissionManagementComponentOutputs {
readonly visibleChange: EventEmitter<boolean>;
}
}