Interface RenderBlocksRequest

interface RenderBlocksRequest {
    code: string | MakeCodeProject;
    options?: {
        layout?: BlockLayout;
        package?: string;
        packageId?: string;
        snippetMode?: boolean;
    };
}

Properties

Properties

code: string | MakeCodeProject
options?: {
    layout?: BlockLayout;
    package?: string;
    packageId?: string;
    snippetMode?: boolean;
}