12 lines
245 B
TypeScript
Raw Normal View History

2019-12-17 16:39:02 +09:00
import { NotificationType } from '../types/notification.type';
2019-11-09 17:29:02 +09:00
export interface NotificationRequest {
2019-12-17 16:39:02 +09:00
type: NotificationType;
seq: string;
2019-11-09 17:29:02 +09:00
title: string;
contents: string;
image: string;
useSound: boolean;
2019-12-20 20:25:51 +09:00
displayTime?: number;
2019-11-09 17:29:02 +09:00
}