6 lines
94 B
TypeScript
6 lines
94 B
TypeScript
export declare type Permission = {
|
|
id: number;
|
|
target: string;
|
|
action: string;
|
|
};
|