7 lines
115 B
TypeScript
7 lines
115 B
TypeScript
export type UpdatePermission = {
|
|
id: number;
|
|
principal: number;
|
|
target: string;
|
|
action: string;
|
|
};
|