@authup/core-kit
Version:
Package containing global constants, types & interfaces.
13 lines • 345 B
TypeScript
import type { Realm } from '../realm';
export interface Scope {
id: string;
built_in: boolean;
name: string;
display_name: string | null;
description: string | null;
realm_id: Realm['id'] | null;
realm: Realm | null;
created_at: Date | string;
updated_at: Date | string;
}
//# sourceMappingURL=entity.d.ts.map