mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
08d0ee65d1
Summary: It is important for linking to be maintained, or user could be gravely misled about material in other sections. Test Plan: added test Reviewers: dsagal Reviewed By: dsagal Subscribers: dsagal Differential Revision: https://phab.getgrist.com/D3003
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>;
|