7 lines
104 B
TypeScript
7 lines
104 B
TypeScript
export type NotificationMessage = {
|
|
sound?: string;
|
|
title: string;
|
|
body: string;
|
|
data?: any;
|
|
};
|