Files
interfaces/ts/platform/pushnotification.ts
T

19 lines
447 B
TypeScript
Raw Normal View History

2026-04-28 11:17:07 +00:00
import * as plugins from '../plugins.js';
export interface IReq_SendPushNotification extends plugins.typedrequestInterfaces.implementsTR<
plugins.typedrequestInterfaces.ITypedRequest,
IReq_SendPushNotification
> {
method: 'sendPushNotification';
request: {
deviceToken: string;
message: string;
};
response: {
ok: boolean;
status: string;
};
}
export type IRequest_SendPushNotification = IReq_SendPushNotification;