12 lines
242 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;
interval?: number;
}