@boneframework/native-components
Version:
Expo React Native Components for Bone Framework
13 lines (9 loc) • 329 B
text/typescript
import client from './client';
const register = (pushToken: string) => client.post('/api/notifications/register-token', { token: pushToken });
const send = (message: string, data: any) => {
return client.post('/api/notifications/send-notification', { message, data });
};
export default {
register,
send,
};