UNPKG

sb-edit

Version:

Import, edit, and export Scratch project files

17 lines (16 loc) 340 B
import Block from "./Block"; export default class Script { x: number; y: number; blocks: Block[]; name: string; constructor(options: { blocks: Block[]; x?: number; y?: number; name?: string; }); get hat(): Block | null; get body(): Block[]; setName(name: string): void; }