@stackblitz/sdk
Advanced tools
Comparing version 1.5.4 to 1.5.5
{ | ||
"name": "@stackblitz/sdk", | ||
"version": "1.5.4", | ||
"version": "1.5.5", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "./bundles/sdk.js", |
import { Project, OpenOptions, EmbedOptions } from './interfaces'; | ||
import { VM } from './VM'; | ||
declare const StackBlitzSDK: { | ||
connect: (frameEl: HTMLIFrameElement) => Promise<import("../../../../../../../Users/florens/Code/stackblitz/core/sdk/src/VM").VM>; | ||
openGithubProject: (repoSlug: string, options?: OpenOptions | undefined) => void; | ||
openProject: (project: Project, options?: OpenOptions | undefined) => void; | ||
openProjectId: (projectId: string, options?: OpenOptions | undefined) => void; | ||
embedGithubProject: (elementOrId: string | HTMLElement, repoSlug: string, options?: EmbedOptions | undefined) => Promise<import("../../../../../../../Users/florens/Code/stackblitz/core/sdk/src/VM").VM>; | ||
embedProject: (elementOrId: string | HTMLElement, project: Project, options?: EmbedOptions | undefined) => Promise<import("../../../../../../../Users/florens/Code/stackblitz/core/sdk/src/VM").VM>; | ||
embedProjectId: (elementOrId: string | HTMLElement, projectId: string, options?: EmbedOptions | undefined) => Promise<import("../../../../../../../Users/florens/Code/stackblitz/core/sdk/src/VM").VM>; | ||
connect(frameEl: HTMLIFrameElement): Promise<VM>; | ||
openGithubProject(repoSlug: string, options?: OpenOptions | undefined): void; | ||
openProject(project: Project, options?: OpenOptions | undefined): void; | ||
openProjectId(projectId: string, options?: OpenOptions | undefined): void; | ||
embedGithubProject(elementOrId: string | HTMLElement, repoSlug: string, options?: EmbedOptions | undefined): Promise<VM>; | ||
embedProject(elementOrId: string | HTMLElement, project: Project, options?: EmbedOptions | undefined): Promise<VM>; | ||
embedProjectId(elementOrId: string | HTMLElement, projectId: string, options?: EmbedOptions | undefined): Promise<VM>; | ||
}; | ||
export default StackBlitzSDK; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
166
22281