diff --git a/src/notification/pushbullet.ts b/src/notification/pushbullet.ts index ec1e70eb87..53eb9a06e0 100644 --- a/src/notification/pushbullet.ts +++ b/src/notification/pushbullet.ts @@ -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; diff --git a/src/types/pushbullet.d.ts b/src/types/pushbullet.d.ts index 3303893390..5435c8c47c 100644 --- a/src/types/pushbullet.d.ts +++ b/src/types/pushbullet.d.ts @@ -1,4 +1,4 @@ -declare module '@hijef/pushbullet' { +declare module '@jef/pushbullet' { export type DeviceParams = string | number | Record; export type PushBulletCallback = ((error: Error) => void) | ((error?: null, response: any) => void);