Put the submit_sm summary back on the function it describes and tidy the review nits

This commit is contained in:
2026-08-30 23:12:22 +02:00
parent 706b61d6ca
commit 140464802b
5 changed files with 6 additions and 5 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ export type SmsIdNotation = keyof typeof notations;
/** The notation per place the peer writes an id. An omitted place is left as it arrived. */
export type SmsIdFormat = Partial<Record<typeof places[number], SmsIdNotation | undefined>>;
export const smsIdNotations: string[] = Object.keys(notations);
export const smsIdNotations: readonly string[] = Object.keys(notations);
export const smsIdPlaces: readonly string[] = places;