interfaces/ts/platformservice/pushnotification.ts

19 lines
409 B
TypeScript
Raw Normal View History

import * as plugins from '../plugins.js';
export interface IRequest_SendPushNotification extends plugins.typedrequestInterfaces.implementsTR<
plugins.typedrequestInterfaces.ITypedRequest,
IRequest_SendPushNotification
> {
method: 'sendPushNotification';
request: {
data: {
deviceToken: string;
message: string;
};
}
response: {
data: {
success: boolean;
};
}
}