UNPKG

@nodescript/core

Version:

Visual programming language for Browser and Node

11 lines 265 B
import { Schema } from 'airtight'; export const PointSchema = new Schema({ id: 'Point', type: 'object', properties: { x: { type: 'number' }, y: { type: 'number' }, }, default: { x: 0, y: 0 }, }); //# sourceMappingURL=Point.js.map