@stackblitz/sdk
Version:
SDK for generating and embedding StackBlitz projects.
14 lines (13 loc) • 726 B
TypeScript
import { connect, embedGithubProject, embedProject, embedProjectId, openGithubProject, openProject, openProjectId } from './lib';
export type { Project, ProjectDependencies, ProjectFiles, ProjectSettings, ProjectTemplate, ProjectOptions, EmbedOptions, OpenOptions, OpenFileOption, UiThemeOption, UiViewOption, } from './interfaces';
export type { FsDiff, VM } from './vm';
declare const StackBlitzSDK: {
connect: typeof connect;
embedGithubProject: typeof embedGithubProject;
embedProject: typeof embedProject;
embedProjectId: typeof embedProjectId;
openGithubProject: typeof openGithubProject;
openProject: typeof openProject;
openProjectId: typeof openProjectId;
};
export default StackBlitzSDK;