mirror of
https://github.com/flarum/framework.git
synced 2025-02-15 09:32:51 +08:00
13 lines
482 B
TypeScript
13 lines
482 B
TypeScript
export default class PermissionGrid extends Component<import("../../common/Component").ComponentAttrs, undefined> {
|
|
constructor();
|
|
permissionItems(): ItemList<any>;
|
|
viewItems(): ItemList<any>;
|
|
startItems(): ItemList<any>;
|
|
replyItems(): ItemList<any>;
|
|
moderateItems(): ItemList<any>;
|
|
scopeItems(): ItemList<any>;
|
|
scopeControlItems(): ItemList<any>;
|
|
}
|
|
import Component from "../../common/Component";
|
|
import ItemList from "../../common/utils/ItemList";
|