8 lines
172 B
TypeScript
8 lines
172 B
TypeScript
import type { Principal } from './Principal';
|
|
export declare type UpdatePermission = {
|
|
id: number;
|
|
principal: Principal;
|
|
target: string;
|
|
action: string;
|
|
};
|