mirror of
https://github.com/flarum/framework.git
synced 2024-11-25 09:41:49 +08:00
c3a684c7ed
Includes transpiled JS/TS, and Typescript declaration files (typings). [skip ci]
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";
|