@batiq/core
Advanced tools
Comparing version 0.1.0-alpha2 to 0.1.0-alpha3
{ | ||
"name": "@batiq/core", | ||
"version": "0.1.0-alpha2", | ||
"version": "0.1.0-alpha3", | ||
"type": "module", | ||
@@ -5,0 +5,0 @@ "scripts": { |
@@ -43,3 +43,3 @@ import { JSONSchemaType } from "ajv"; | ||
}; | ||
export type Primitive = ComponentSchema | ExpressionSchema | string | number | boolean; | ||
export type Primitive = ComponentSchema | string | number | boolean; | ||
export type Container<T> = T | Container<T>[] | { | ||
@@ -46,0 +46,0 @@ [key in string extends "type" ? never : string]: Container<T>; |
28627