Skip to content

Commit

Permalink
fix: typing error jquery.terminal is not a module
Browse files Browse the repository at this point in the history
Fix for typing error when import ``jquery.terminal`` you got the error: File '[.../node_modules/jquery.terminal/js/jquery.terminal.d.ts' is not a module.
  • Loading branch information
KiddoV committed Sep 15, 2023
1 parent 73a0060 commit c1428be
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions js/jquery.terminal.d.ts
Expand Up @@ -828,3 +828,8 @@ interface JQueryTerminal<TElement = HTMLElement> extends JQuery<TElement> {
scroll_to_bottom(): JQueryTerminal;
is_bottom(): boolean;
}

declare module 'jquery.terminal' {
const JQTerminal: (window: Window, JQuery: JQueryStatic) => void;
export default JQTerminal;
}

0 comments on commit c1428be

Please sign in to comment.