mirror of https://github.com/abpframework/abp.git
2 changed files with 11 additions and 0 deletions
@ -0,0 +1,10 @@ |
|||
import { Type } from '@angular/core'; |
|||
|
|||
export interface NavItem { |
|||
id: string | number; |
|||
component?: Type<any>; |
|||
html?: string; |
|||
action?: () => void; |
|||
order?: number; |
|||
requiredPolicy?: string; |
|||
} |
|||
Loading…
Reference in new issue