Skip to content

Commit ffa20d2

Browse files
committed
chore: move NotificationButton type out of atom-ide
This is an Atom package not atom-ide
1 parent e1fa4dc commit ffa20d2

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

lib/adapters/notifications-adapter.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@ import {
1010
NotificationOptions,
1111
NotificationExt,
1212
} from 'atom';
13-
import {
14-
NotificationButton,
15-
} from 'atom-ide';
13+
14+
export interface NotificationButton {
15+
text: string
16+
}
1617

1718
/** Public: Adapts Atom's user notifications to those of the language server protocol. */
1819
export default class NotificationsAdapter {

typings/atom-ide/index.d.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
11
declare module 'atom-ide' {
2-
export interface NotificationButton {
3-
text: string
4-
}
52
}

0 commit comments

Comments
 (0)