mirror of
https://github.com/litruv/picoGraph.git
synced 2026-07-24 02:36:04 +10:00
- Created test_cart.p8 with basic drawing functionality and a print statement. - Created test_unix.p8 with a simple initialization function.
14 lines
256 B
JavaScript
14 lines
256 B
JavaScript
/**
|
|
* @typedef {import('./TypeRegistry.js').TypeDescriptor} TypeDescriptor
|
|
*/
|
|
|
|
/** @type {TypeDescriptor} */
|
|
export const AnyType = {
|
|
id: "any",
|
|
label: "Any",
|
|
color: "#ff7f11",
|
|
isVariable: true,
|
|
isLocalVariable: false,
|
|
defaultValue: null,
|
|
};
|