feat: add platform capability contracts
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user