Welcome to mirror list, hosted at ThFree Co, Russian Federation.

globals.d.ts - github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1059108a775711083cb5d8148fe8e545d9386dd5 (plain)
1
2
3
4
5
6
7
8
import * as jQuery from 'jquery';

declare global {
    interface Window {
        jQuery: typeof jQuery;
        $: typeof jQuery;
    }
}