9 lines
156 B
TypeScript
Raw Normal View History

2019-11-09 17:29:02 +09:00
export interface NotificationRequest {
roomSeq: string;
title: string;
contents: string;
image: string;
useSound: boolean;
interval?: number;
}