mirror of
https://github.com/flarum/core.git
synced 2025-06-01 03:55:13 +02:00
10 lines
211 B
TypeScript
10 lines
211 B
TypeScript
export default Group;
|
|
declare class Group extends Model {
|
|
}
|
|
declare namespace Group {
|
|
const ADMINISTRATOR_ID: string;
|
|
const GUEST_ID: string;
|
|
const MEMBER_ID: string;
|
|
}
|
|
import Model from "../Model";
|