matrix-react-sdk
Version:
SDK for matrix.org using React
11 lines (10 loc) • 609 B
TypeScript
import SettingController from "./SettingController";
import { SettingLevel } from "../SettingLevel";
export declare function isPushNotifyDisabled(): boolean;
export declare class NotificationsEnabledController extends SettingController {
getValueOverride(level: SettingLevel, roomId: string, calculatedValue: any, calculatedAtLevel: SettingLevel | null): any;
onChange(level: SettingLevel, roomId: string, newValue: any): void;
}
export declare class NotificationBodyEnabledController extends SettingController {
getValueOverride(level: SettingLevel, roomId: string, calculatedValue: any): any;
}