certimate/ui/src/domain/access_groups.ts

11 lines
160 B
TypeScript

import { Access } from "./access";
export type AccessGroup = {
id?: string;
name?: string;
access?: string[];
expand?: {
access: Access[];
};
};