6 lines
236 B
TypeScript
6 lines
236 B
TypeScript
import { CommandsBase } from './CommandsBase';
|
|
import { UUID } from '../UUID';
|
|
export declare class GroupCommands extends CommandsBase {
|
|
sendGroupNotice(group: UUID | string, subject: string, message: string): Promise<void>;
|
|
}
|