mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 16:38:19 +01:00
12 lines
259 B
TypeScript
12 lines
259 B
TypeScript
import type { RolePermissions } from "~/drizzle/schema";
|
|
|
|
export type LysandRole = {
|
|
id: string;
|
|
name: string;
|
|
permissions: RolePermissions[];
|
|
priority: number;
|
|
description: string | null;
|
|
visible: boolean;
|
|
icon: string | null;
|
|
};
|