UNPKG

@webwriter/block-based-code

Version:

Write block-based code (e.g. Scratch) and run it.

17 lines (15 loc) 298 B
import { BlockDefinition } from "../types"; export const stringBlock = { type: "text:string", message0: "%1", args0: [ { type: "field_input", name: "TEXT", text: "", }, ], output: "String", category: null, style: null, } as const satisfies BlockDefinition;