ashish-sdk
Version:
ThoughtSpot Embed SDK
17 lines (16 loc) • 714 B
TypeScript
/// <reference types="react" />
import { SearchViewConfig } from '../embed/search';
import { AppViewConfig } from '../embed/app';
import { LiveboardViewConfig } from '../embed/liveboard';
import { EmbedProps } from './util';
interface SearchProps extends EmbedProps, SearchViewConfig {
}
export declare const SearchEmbed: (props: SearchProps) => JSX.Element;
interface AppProps extends EmbedProps, AppViewConfig {
}
export declare const AppEmbed: (props: AppProps) => JSX.Element;
interface LiveboardProps extends EmbedProps, LiveboardViewConfig {
}
export declare const LiveboardEmbed: (props: LiveboardProps) => JSX.Element;
export declare const PinboardEmbed: (props: LiveboardProps) => JSX.Element;
export {};