mirror of
https://github.com/woodchen-ink/certimate.git
synced 2025-07-18 09:21:56 +08:00
11 lines
160 B
TypeScript
11 lines
160 B
TypeScript
import { Access } from "./access";
|
|
|
|
export type AccessGroup = {
|
|
id?: string;
|
|
name?: string;
|
|
access?: string[];
|
|
expand?: {
|
|
access: Access[];
|
|
};
|
|
};
|