12 lines
245 B
TypeScript
12 lines
245 B
TypeScript
import { NotificationType } from '../types/notification.type';
|
|
|
|
export interface NotificationRequest {
|
|
type: NotificationType;
|
|
seq: string;
|
|
title: string;
|
|
contents: string;
|
|
image: string;
|
|
useSound: boolean;
|
|
displayTime?: number;
|
|
}
|