You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
503 B
TypeScript
19 lines
503 B
TypeScript
import { SignalService } from '../../../../../../protobuf';
|
|
import { DataMessage } from '../../../DataMessage';
|
|
import { MessageParams } from '../../../Message';
|
|
|
|
export interface GroupMessageParams extends MessageParams {}
|
|
|
|
export abstract class GroupMessage extends DataMessage {
|
|
constructor(params: GroupMessageParams) {
|
|
super({
|
|
timestamp: params.timestamp,
|
|
identifier: params.identifier,
|
|
});
|
|
}
|
|
|
|
protected groupMessage() {
|
|
return new SignalService.GroupMessage();
|
|
}
|
|
}
|