17 lines
252 B
TypeScript
17 lines
252 B
TypeScript
export interface PageAccess {
|
|
path?: string
|
|
permissions?: string[]
|
|
title?: string;
|
|
}
|
|
|
|
export interface RoleAccess {
|
|
role?: string
|
|
pages?: PageAccess[]
|
|
}
|
|
|
|
export interface minisidebar {
|
|
icon?: string;
|
|
id?:number;
|
|
tooltip?:string
|
|
}
|