mirror of
https://github.com/flarum/core.git
synced 2025-08-10 10:24:46 +02:00
12 lines
305 B
TypeScript
12 lines
305 B
TypeScript
import Model from '../Model';
|
|
export default class Group extends Model {
|
|
static ADMINISTRATOR_ID: string;
|
|
static GUEST_ID: string;
|
|
static MEMBER_ID: string;
|
|
nameSingular(): string;
|
|
namePlural(): string;
|
|
color(): string | null;
|
|
icon(): string | null;
|
|
isHidden(): boolean;
|
|
}
|