fix: update pushbullet import to match package (#637)

This commit is contained in:
James Kiefer
2020-10-29 15:00:58 -06:00
committed by GitHub
parent ab4f779573
commit d7360f71ef
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
import {Link, Store} from '../store/model';
import {Print, logger} from '../logger';
import PushBullet from '@hijef/pushbullet';
import PushBullet from '@jef/pushbullet';
import {config} from '../config';
const pushbullet = config.notifications.pushbullet;
+1 -1
View File
@@ -1,4 +1,4 @@
declare module '@hijef/pushbullet' {
declare module '@jef/pushbullet' {
export type DeviceParams = string | number | Record<string, any>;
export type PushBulletCallback = ((error: Error) => void) | ((error?: null, response: any) => void);