11 lines
270 B
TypeScript
11 lines
270 B
TypeScript
|
export interface AvailableActionOptions {
|
||
|
aliases?: string[] | string;
|
||
|
type: 'new-data' | 'old-data';
|
||
|
displayName?: string;
|
||
|
resource?: string;
|
||
|
}
|
||
|
|
||
|
export class AclAvailableAction {
|
||
|
constructor(private name: string, private options: AvailableActionOptions) {}
|
||
|
}
|