fix: missing export type for admin plugin (#683)

This commit is contained in:
Bereket Engida
2024-11-29 20:14:45 +03:00
committed by GitHub
parent c1b5cc4fe3
commit 4b7ca02e33

View File

@@ -25,7 +25,7 @@ export interface UserWithRole extends User {
banExpires?: Date | null;
}
interface SessionWithImpersonatedBy extends Session {
export interface SessionWithImpersonatedBy extends Session {
impersonatedBy?: string;
}