mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
19 lines
930 B
TypeScript
19 lines
930 B
TypeScript
|
import * as BillingPageModule from 'app/client/ui/BillingPage';
|
||
|
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';
|
||
|
import * as momentTimezone from 'moment-timezone';
|
||
|
import * as plotly from 'plotly.js';
|
||
|
|
||
|
export type PlotlyType = typeof plotly;
|
||
|
export type MomentTimezone = typeof momentTimezone;
|
||
|
|
||
|
export function loadBillingPage(): Promise<typeof BillingPageModule>;
|
||
|
export function loadGristDoc(): Promise<typeof GristDocModule>;
|
||
|
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>;
|