import * as plugins from '../plugins.js'; /** @deprecated Use the credential-scoped requests.webpush contracts. */ export interface IRequest_SendPushNotification extends plugins.typedrequestInterfaces.implementsTR { method: 'sendPushNotification'; request: { deviceToken: string; message: string; }; response: { ok: boolean; status: string; }; } export type IReq_SendPushNotification = IRequest_SendPushNotification;