Newer
Older
alert / js / node_modules / flarum / common / models / Group.d.ts
@Réz István Réz István on 18 Nov 2021 274 bytes first commit
export default Group;
declare class Group extends Model {
    constructor(data?: any, store?: any);
}
declare namespace Group {
    export const ADMINISTRATOR_ID: string;
    export const GUEST_ID: string;
    export const MEMBER_ID: string;
}
import Model from "../Model";