Initial commit

This commit is contained in:
2025-07-25 19:00:06 -04:00
commit e604c7a437
52 changed files with 96098 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import { type ProfileRole } from "../../platforms/base.ts";
import type Profile from "../profile.ts";
export interface RoleUpdateEvent {
profile: Profile,
newRole: ProfileRole
}