UNPKG

@serve.zone/interfaces

Version:

**TypeScript interfaces for the Cloudly ecosystem.** Type-safe contracts for multi-cloud infrastructure management.

16 lines (15 loc) 380 B
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; } }