10 lines
155 B
TypeScript
10 lines
155 B
TypeScript
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
|
|
export type Permission = {
|
|
id: number;
|
|
target: string;
|
|
action: string;
|
|
}
|