Signal: satisfy lint

This commit is contained in:
Vignesh Natarajan
2026-02-12 13:41:57 -08:00
committed by Vignesh
parent cfec19df53
commit d3e43de42b
3 changed files with 28 additions and 17 deletions

View File

@@ -53,14 +53,12 @@ type GroupEventOpts = {
message?: string;
attachments?: unknown[];
quoteText?: string;
mentions?:
| Array<{
uuid?: string;
number?: string;
start?: number;
length?: number;
}>
| null;
mentions?: Array<{
uuid?: string;
number?: string;
start?: number;
length?: number;
}> | null;
};
function makeGroupEvent(opts: GroupEventOpts) {