@serve.zone/interfaces
Version:
interfaces for working with containers
13 lines (12 loc) • 402 B
TypeScript
import * as plugins from '../plugins.js';
export interface IRequest_SendPushNotification extends plugins.typedrequestInterfaces.implementsTR<plugins.typedrequestInterfaces.ITypedRequest, IRequest_SendPushNotification> {
method: 'sendPushNotification';
request: {
deviceToken: string;
message: string;
};
response: {
ok: boolean;
status: string;
};
}