UNPKG

@robotical/scratch-to-python-transpiler

Version:
17 lines (16 loc) 333 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; get body(): Block[]; setName(name: string): void; }