2023-07-04 21:21:34 +00:00
|
|
|
import * as AccountPageModule from 'app/client/ui/AccountPage';
|
|
|
|
import * as ActivationPageModule from 'app/client/ui/ActivationPage';
|
2020-10-02 15:10:00 +00:00
|
|
|
import * as BillingPageModule from 'app/client/ui/BillingPage';
|
2024-03-23 17:11:06 +00:00
|
|
|
import * as AdminPanelModule from 'app/client/ui/AdminPanel';
|
2020-10-02 15:10:00 +00:00
|
|
|
import * as GristDocModule from 'app/client/components/GristDoc';
|
|
|
|
import * as ViewPane from 'app/client/components/ViewPane';
|
|
|
|
import * as UserManagerModule from 'app/client/ui/UserManager';
|
|
|
|
import * as searchModule from 'app/client/ui2018/search';
|
2024-04-26 20:34:16 +00:00
|
|
|
import * as ace from 'ace-builds';
|
2020-10-02 15:10:00 +00:00
|
|
|
import * as momentTimezone from 'moment-timezone';
|
|
|
|
import * as plotly from 'plotly.js';
|
|
|
|
|
2024-04-26 20:34:16 +00:00
|
|
|
export type Ace = typeof ace;
|
2020-10-02 15:10:00 +00:00
|
|
|
export type MomentTimezone = typeof momentTimezone;
|
2024-04-26 20:34:16 +00:00
|
|
|
export type PlotlyType = typeof plotly;
|
2020-10-02 15:10:00 +00:00
|
|
|
|
2023-07-04 21:21:34 +00:00
|
|
|
export function loadAccountPage(): Promise<typeof AccountPageModule>;
|
|
|
|
export function loadActivationPage(): Promise<typeof ActivationPageModule>;
|
2020-10-02 15:10:00 +00:00
|
|
|
export function loadBillingPage(): Promise<typeof BillingPageModule>;
|
2024-03-23 17:11:06 +00:00
|
|
|
export function loadAdminPanel(): Promise<typeof AdminPanelModule>;
|
2020-10-02 15:10:00 +00:00
|
|
|
export function loadGristDoc(): Promise<typeof GristDocModule>;
|
2024-04-26 20:34:16 +00:00
|
|
|
export function loadAce(): Promise<Ace>;
|
2020-10-02 15:10:00 +00:00
|
|
|
export function loadMomentTimezone(): Promise<MomentTimezone>;
|
|
|
|
export function loadPlotly(): Promise<PlotlyType>;
|
|
|
|
export function loadSearch(): Promise<typeof searchModule>;
|
|
|
|
export function loadUserManager(): Promise<typeof UserManagerModule>;
|
|
|
|
export function loadViewPane(): Promise<typeof ViewPane>;
|