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

globals.d.ts « types « assets - github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e74232c22d743891c123470fe77e08642894f99f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/* eslint-disable no-undef */
/// <reference types="jquery" />

/// <reference types="jstree" />
/// <reference types="codemirror" />
interface Window {
  jQuery: typeof jQuery;
  $: typeof jQuery;
  inPopUp: boolean;
  stateObj: Record<string, unknown>;
}
// Generated by https://quicktype.io

interface StateObj {
  serverSide: boolean;
  dir: string;
  in_test: string;
  reload: string;
  method: string;
  subfolder: string;
  path: string;
  query_string: string;
  strconfdropcred: string;
  origin: string;
  url: string;
  dttFields: null;
  href: string;
  guessedSubfolder: string;
  pathname: string;
  dttArgs: DataTables.Settings;
  basePath: string;
  realurl: string;
  redirect_to: string;
  parenturl: string;
  dataTable: DataTables.Api;
}

 
declare var stateObj: StateObj;