@authup/server-api
Version:
This is a standalone application.
13 lines • 374 B
TypeScript
import type { Permission, Realm } from '@authup/core';
export declare class PermissionEntity implements Permission {
id: string;
name: string;
built_in: boolean;
description: string | null;
target: string | null;
realm_id: Realm['id'] | null;
realm: Realm | null;
created_at: Date;
updated_at: Date;
}
//# sourceMappingURL=entity.d.ts.map