@almadar/core 5.3.0 → 5.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/builders.d.ts +2 -2
- package/dist/builders.js.map +1 -1
- package/dist/{compose-behaviors-BOy-gFQn.d.ts → compose-behaviors-B6kpM8Iy.d.ts} +1 -1
- package/dist/domain-language/index.d.ts +1 -1
- package/dist/domain-language/index.js.map +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.js.map +1 -1
- package/dist/{schema-ks5fDpzp.d.ts → schema-4TWKcBt4.d.ts} +18 -3
- package/dist/types/index.d.ts +2 -2
- package/dist/types/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -195,9 +195,24 @@ type ExpressionInput = z.input<typeof ExpressionSchema>;
|
|
|
195
195
|
interface EvalContext {
|
|
196
196
|
[key: string]: string | number | boolean | Date | null | string[] | EvalContext | undefined;
|
|
197
197
|
}
|
|
198
|
-
/**
|
|
198
|
+
/**
|
|
199
|
+
* A single value carried by an event payload field. The top-level payload
|
|
200
|
+
* is always an object; the VALUES in that object can be primitives, nested
|
|
201
|
+
* objects, or arrays of the same. Arrays are allowed so real-world emits
|
|
202
|
+
* like `{ files: [{ name, size, type }, ...] }` or `{ selected: string[] }`
|
|
203
|
+
* are typed natively instead of forcing consumers to wrap at every call.
|
|
204
|
+
*
|
|
205
|
+
* `Date` is included so `EntityRow` (whose values are `FieldValue`, which
|
|
206
|
+
* includes `Date`) is assignable to a payload field without a cast —
|
|
207
|
+
* emitted entity rows flow through the bus without boundary widening.
|
|
208
|
+
*/
|
|
209
|
+
type EventPayloadValue = string | number | boolean | Date | null | undefined | EventPayload | EventPayloadValue[];
|
|
210
|
+
/**
|
|
211
|
+
* Typed event payload. Object-shaped so it's assignable to the bus's
|
|
212
|
+
* `EventPayload` parameter without casts.
|
|
213
|
+
*/
|
|
199
214
|
interface EventPayload {
|
|
200
|
-
[key: string]:
|
|
215
|
+
[key: string]: EventPayloadValue;
|
|
201
216
|
}
|
|
202
217
|
/** Structured log/event metadata. Recursive to support nested log data. */
|
|
203
218
|
interface LogMeta {
|
|
@@ -22765,4 +22780,4 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22765
22780
|
type OrbitalSchemaInput = z.input<typeof OrbitalSchemaSchema>;
|
|
22766
22781
|
type OrbitalConfigInput = z.input<typeof OrbitalConfigSchema>;
|
|
22767
22782
|
|
|
22768
|
-
export { type DesignTokens as $, AGENT_DOMAIN_CATEGORIES as A, AssetMappingSchema as B, type AtomicEffect as C, CORE_BINDINGS as D, type Entity as E, type CallServiceConfig as F, type CallServiceEffect as G, type ComputedEventContract as H, ComputedEventContractSchema as I, type ComputedEventListener as J, ComputedEventListenerSchema as K, type CoreBinding as L, type CustomPatternDefinition as M, type CustomPatternDefinitionInput as N, type OrbitalDefinition as O, type PageRef as P, CustomPatternDefinitionSchema as Q, type CustomPatternMap as R, type SExpr as S, type TraitEventContract as T, type UseDeclaration as U, type CustomPatternMapInput as V, CustomPatternMapSchema as W, type DerefEffect as X, type DesignPreferences as Y, type DesignPreferencesInput as Z, DesignPreferencesSchema as _, type TraitEventListener as a, type
|
|
22783
|
+
export { type DesignTokens as $, AGENT_DOMAIN_CATEGORIES as A, AssetMappingSchema as B, type AtomicEffect as C, CORE_BINDINGS as D, type Entity as E, type CallServiceConfig as F, type CallServiceEffect as G, type ComputedEventContract as H, ComputedEventContractSchema as I, type ComputedEventListener as J, ComputedEventListenerSchema as K, type CoreBinding as L, type CustomPatternDefinition as M, type CustomPatternDefinitionInput as N, type OrbitalDefinition as O, type PageRef as P, CustomPatternDefinitionSchema as Q, type CustomPatternMap as R, type SExpr as S, type TraitEventContract as T, type UseDeclaration as U, type CustomPatternMapInput as V, CustomPatternMapSchema as W, type DerefEffect as X, type DesignPreferences as Y, type DesignPreferencesInput as Z, DesignPreferencesSchema as _, type TraitEventListener as a, type Guard as a$, type DesignTokensInput as a0, DesignTokensSchema as a1, type DespawnEffect as a2, type DoEffect as a3, type DomainCategory as a4, DomainCategorySchema as a5, type DomainContext as a6, type DomainContextInput as a7, DomainContextSchema as a8, type DomainVocabulary as a9, type EventPayloadField as aA, EventPayloadFieldSchema as aB, type EventPayloadValue as aC, EventSchema as aD, type EventScope as aE, EventScopeSchema as aF, type EventSemanticRole as aG, EventSemanticRoleSchema as aH, type EventSource as aI, EventSourceSchema as aJ, type Expression as aK, type ExpressionInput as aL, ExpressionSchema as aM, type FetchEffect as aN, type Field as aO, type FieldFormat as aP, FieldFormatSchema as aQ, FieldSchema as aR, type FieldType as aS, FieldTypeSchema as aT, type FieldValue as aU, type Orbital as aV, GAME_TYPES as aW, type GameSubCategory as aX, GameSubCategorySchema as aY, type GameType as aZ, GameTypeSchema as a_, DomainVocabularySchema as aa, ENTITY_ROLES as ab, type Effect as ac, type EffectInput as ad, EffectSchema as ae, type EmitConfig as af, type EmitEffect as ag, type EntityCall as ah, EntityCallSchema as ai, type EntityData as aj, type EntityFieldInput as ak, EntityFieldSchema as al, EntityPersistenceSchema as am, EntityRefSchema as an, EntityRefStringSchema as ao, type EntityRole as ap, EntityRoleSchema as aq, EntitySchema as ar, type EntitySemanticRole as as, EntitySemanticRoleSchema as at, type EvalContext as au, type Event as av, type EventInput as aw, type EventListener as ax, EventListenerSchema as ay, type EventPayload as az, type TraitConfig as b, type SExprAtom as b$, type GuardInput as b0, GuardSchema as b1, type ListenSource as b2, ListenSourceSchema as b3, type LogEffect as b4, type LogMeta as b5, type McpServiceDef as b6, McpServiceDefSchema as b7, type NavigateEffect as b8, type NodeClassification as b9, type PageTraitRef as bA, PageTraitRefSchema as bB, type ParsedBinding as bC, type PayloadField as bD, PayloadFieldSchema as bE, type PersistEffect as bF, type PresentationType as bG, type RefEffect as bH, type RelatedLink as bI, RelatedLinkSchema as bJ, type RelationConfig as bK, RelationConfigSchema as bL, type RenderItemLambda as bM, type RenderUIConfig as bN, type RenderUIEffect as bO, type RenderUINode as bP, type RequiredField as bQ, RequiredFieldSchema as bR, type ResolvedAsset as bS, type ResolvedAssetInput as bT, ResolvedAssetSchema as bU, type ResolvedPatternProps as bV, type RestAuthConfig as bW, RestAuthConfigSchema as bX, type RestServiceDef as bY, RestServiceDefSchema as bZ, SERVICE_TYPES as b_, NodeClassificationSchema as ba, type NotifyEffect as bb, type OrbitalConfig as bc, type OrbitalConfigInput as bd, OrbitalConfigSchema as be, OrbitalDefinitionSchema as bf, type OrbitalEntity as bg, type OrbitalEntityInput as bh, OrbitalEntitySchema as bi, type OrbitalInput as bj, type OrbitalPage as bk, type OrbitalPageInput as bl, OrbitalPageSchema as bm, type OrbitalPageStrictInput as bn, OrbitalPageStrictSchema as bo, type OrbitalSchemaInput as bp, OrbitalSchemaSchema as bq, type OrbitalTraitRef as br, OrbitalTraitRefSchema as bs, type OrbitalUnit as bt, OrbitalUnitSchema as bu, OrbitalSchema$1 as bv, PageRefObjectSchema as bw, PageRefSchema as bx, PageRefStringSchema as by, PageSchema as bz, type EntityField as c, TransitionSchema as c$, SExprAtomSchema as c0, type SExprInput as c1, SExprSchema as c2, type SemanticAssetRef as c3, type SemanticAssetRefInput as c4, SemanticAssetRefSchema as c5, type ServiceDefinition as c6, ServiceDefinitionSchema as c7, type ServiceParams as c8, type ServiceRef as c9, ThemeRefStringSchema as cA, type ThemeTokens as cB, ThemeTokensSchema as cC, type ThemeVariant as cD, ThemeVariantSchema as cE, type TraitCategory as cF, TraitCategorySchema as cG, type TraitConfigObject as cH, TraitConfigSchema as cI, type TraitConfigValue as cJ, TraitConfigValueSchema as cK, type TraitDataEntity as cL, TraitDataEntitySchema as cM, type TraitEntityField as cN, TraitEntityFieldSchema as cO, TraitEventContractSchema as cP, TraitEventListenerSchema as cQ, type TraitInput as cR, TraitRefSchema as cS, type TraitReferenceInput as cT, TraitReferenceSchema as cU, TraitSchema as cV, type TraitTick as cW, TraitTickSchema as cX, type TraitUIBinding as cY, type Transition as cZ, type TransitionInput as c_, type ServiceRefObject as ca, ServiceRefObjectSchema as cb, ServiceRefSchema as cc, ServiceRefStringSchema as cd, type ServiceType as ce, ServiceTypeSchema as cf, type SetEffect as cg, type SocketEvents as ch, SocketEventsSchema as ci, type SocketServiceDef as cj, SocketServiceDefSchema as ck, type SpawnEffect as cl, type StateInput as cm, type StateMachine as cn, type StateMachineInput as co, StateMachineSchema as cp, StateSchema as cq, type StateSemanticRole as cr, StateSemanticRoleSchema as cs, type SuggestedGuard as ct, SuggestedGuardSchema as cu, type SwapEffect as cv, type ThemeDefinition as cw, ThemeDefinitionSchema as cx, type ThemeRef as cy, ThemeRefSchema as cz, type EntityPersistence as d, parseAssetKey as d$, type TypedEffect as d0, type UISlot as d1, UISlotSchema as d2, UI_SLOTS as d3, type UXHints as d4, UXHintsSchema as d5, UseDeclarationSchema as d6, type UserPersona as d7, type UserPersonaInput as d8, UserPersonaSchema as d9, isCircuitEvent as dA, isEffect as dB, isEntityCall as dC, isEntityReference as dD, isEntityReferenceAny as dE, isImportedTraitRef as dF, isInlineTrait as dG, isMcpService as dH, isOrbitalDefinition as dI, isPageReference as dJ, isPageReferenceObject as dK, isPageReferenceString as dL, isRestService as dM, isRuntimeEntity as dN, isSExpr as dO, isSExprAtom as dP, isSExprCall as dQ, isSExprEffect as dR, isServiceReference as dS, isServiceReferenceObject as dT, isSingletonEntity as dU, isSocketService as dV, isThemeReference as dW, isValidBinding as dX, navigate as dY, normalizeTraitRef as dZ, notify as d_, VISUAL_STYLES as da, type ViewType as db, ViewTypeSchema as dc, type VisualStyle as dd, VisualStyleSchema as de, type WatchEffect as df, type WatchOptions as dg, atomic as dh, callService as di, collectBindings as dj, createAssetKey as dk, deref as dl, deriveCollection as dm, despawn as dn, doEffects as dp, emit as dq, findService as dr, getArgs as ds, getDefaultAnimationsForRole as dt, getOperator as du, getServiceNames as dv, getTraitConfig as dw, getTraitName as dx, hasService as dy, isBinding as dz, type EntityRow as e, parseBinding as e0, parseEntityRef as e1, parseImportedTraitRef as e2, parseOrbitalSchema as e3, parsePageRef as e4, parseServiceRef as e5, persist as e6, ref as e7, renderUI as e8, safeParseOrbitalSchema as e9, set as ea, sexpr as eb, spawn as ec, swap as ed, validateAssetAnimations as ee, walkSExpr as ef, watch as eg, type EntityRef as f, type TraitRef as g, type OrbitalSchema as h, type Trait as i, type Page as j, type PageRefObject as k, type TraitReference as l, type State as m, ALLOWED_CUSTOM_COMPONENTS as n, type AgentDomainCategory as o, AgentDomainCategorySchema as p, type AgentEffect as q, type AllowedCustomComponent as r, type AnimationDef as s, type AnimationDefInput as t, AnimationDefSchema as u, type AssetMap as v, type AssetMapInput as w, AssetMapSchema as x, type AssetMapping as y, type AssetMappingInput as z };
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { e as EntityRow,
|
|
2
|
-
export { A as AGENT_DOMAIN_CATEGORIES, n as ALLOWED_CUSTOM_COMPONENTS, o as AgentDomainCategory, p as AgentDomainCategorySchema, q as AgentEffect, r as AllowedCustomComponent, s as AnimationDef, t as AnimationDefInput, u as AnimationDefSchema, h as AppSchema, v as AssetMap, w as AssetMapInput, x as AssetMapSchema, y as AssetMapping, z as AssetMappingInput, B as AssetMappingSchema, C as AtomicEffect, D as CORE_BINDINGS, F as CallServiceConfig, G as CallServiceEffect, H as ComputedEventContract, I as ComputedEventContractSchema, J as ComputedEventListener, K as ComputedEventListenerSchema, L as CoreBinding, M as CustomPatternDefinition, N as CustomPatternDefinitionInput, Q as CustomPatternDefinitionSchema, R as CustomPatternMap, V as CustomPatternMapInput, W as CustomPatternMapSchema, X as DerefEffect, Y as DesignPreferences, Z as DesignPreferencesInput, _ as DesignPreferencesSchema, $ as DesignTokens, a0 as DesignTokensInput, a1 as DesignTokensSchema, a2 as DespawnEffect, a3 as DoEffect, a4 as DomainCategory, a5 as DomainCategorySchema, a6 as DomainContext, a7 as DomainContextInput, a8 as DomainContextSchema, a9 as DomainVocabulary, aa as DomainVocabularySchema, ab as ENTITY_ROLES, ac as Effect, ad as EffectInput, ae as EffectSchema, af as EmitConfig, ag as EmitEffect, E as Entity, ah as EntityCall, ai as EntityCallSchema, aj as EntityData, c as EntityField, ak as EntityFieldInput, al as EntityFieldSchema, d as EntityPersistence, am as EntityPersistenceSchema, f as EntityRef, an as EntityRefSchema, ao as EntityRefStringSchema, ap as EntityRole, aq as EntityRoleSchema, ar as EntitySchema, as as EntitySemanticRole, at as EntitySemanticRoleSchema, au as EvalContext, av as Event, aw as EventInput, ax as EventListener, ay as EventListenerSchema, aA as EventPayloadField, aB as EventPayloadFieldSchema, aC as
|
|
1
|
+
import { e as EntityRow, aU as FieldValue, S as SExpr, b as TraitConfig, az as EventPayload } from '../schema-4TWKcBt4.js';
|
|
2
|
+
export { A as AGENT_DOMAIN_CATEGORIES, n as ALLOWED_CUSTOM_COMPONENTS, o as AgentDomainCategory, p as AgentDomainCategorySchema, q as AgentEffect, r as AllowedCustomComponent, s as AnimationDef, t as AnimationDefInput, u as AnimationDefSchema, h as AppSchema, v as AssetMap, w as AssetMapInput, x as AssetMapSchema, y as AssetMapping, z as AssetMappingInput, B as AssetMappingSchema, C as AtomicEffect, D as CORE_BINDINGS, F as CallServiceConfig, G as CallServiceEffect, H as ComputedEventContract, I as ComputedEventContractSchema, J as ComputedEventListener, K as ComputedEventListenerSchema, L as CoreBinding, M as CustomPatternDefinition, N as CustomPatternDefinitionInput, Q as CustomPatternDefinitionSchema, R as CustomPatternMap, V as CustomPatternMapInput, W as CustomPatternMapSchema, X as DerefEffect, Y as DesignPreferences, Z as DesignPreferencesInput, _ as DesignPreferencesSchema, $ as DesignTokens, a0 as DesignTokensInput, a1 as DesignTokensSchema, a2 as DespawnEffect, a3 as DoEffect, a4 as DomainCategory, a5 as DomainCategorySchema, a6 as DomainContext, a7 as DomainContextInput, a8 as DomainContextSchema, a9 as DomainVocabulary, aa as DomainVocabularySchema, ab as ENTITY_ROLES, ac as Effect, ad as EffectInput, ae as EffectSchema, af as EmitConfig, ag as EmitEffect, E as Entity, ah as EntityCall, ai as EntityCallSchema, aj as EntityData, c as EntityField, ak as EntityFieldInput, al as EntityFieldSchema, d as EntityPersistence, am as EntityPersistenceSchema, f as EntityRef, an as EntityRefSchema, ao as EntityRefStringSchema, ap as EntityRole, aq as EntityRoleSchema, ar as EntitySchema, as as EntitySemanticRole, at as EntitySemanticRoleSchema, au as EvalContext, av as Event, aw as EventInput, ax as EventListener, ay as EventListenerSchema, aA as EventPayloadField, aB as EventPayloadFieldSchema, aC as EventPayloadValue, aD as EventSchema, aE as EventScope, aF as EventScopeSchema, aG as EventSemanticRole, aH as EventSemanticRoleSchema, aI as EventSource, aJ as EventSourceSchema, aK as Expression, aL as ExpressionInput, aM as ExpressionSchema, aN as FetchEffect, aO as Field, aP as FieldFormat, aQ as FieldFormatSchema, aR as FieldSchema, aS as FieldType, aT as FieldTypeSchema, aV as FullOrbitalUnit, aW as GAME_TYPES, aX as GameSubCategory, aY as GameSubCategorySchema, aZ as GameType, a_ as GameTypeSchema, a$ as Guard, b0 as GuardInput, b1 as GuardSchema, b2 as ListenSource, b3 as ListenSourceSchema, b4 as LogEffect, b5 as LogMeta, b6 as McpServiceDef, b7 as McpServiceDefSchema, b8 as NavigateEffect, b9 as NodeClassification, ba as NodeClassificationSchema, bb as NotifyEffect, aV as Orbital, bc as OrbitalConfig, bd as OrbitalConfigInput, be as OrbitalConfigSchema, O as OrbitalDefinition, bf as OrbitalDefinitionSchema, bg as OrbitalEntity, bh as OrbitalEntityInput, bi as OrbitalEntitySchema, bj as OrbitalInput, bk as OrbitalPage, bl as OrbitalPageInput, bm as OrbitalPageSchema, bn as OrbitalPageStrictInput, bo as OrbitalPageStrictSchema, h as OrbitalSchema, bp as OrbitalSchemaInput, bq as OrbitalSchemaSchema, br as OrbitalTraitRef, bs as OrbitalTraitRefSchema, bt as OrbitalUnit, bu as OrbitalUnitSchema, bv as OrbitalZodSchema, j as Page, P as PageRef, k as PageRefObject, bw as PageRefObjectSchema, bx as PageRefSchema, by as PageRefStringSchema, bz as PageSchema, bA as PageTraitRef, bB as PageTraitRefSchema, bC as ParsedBinding, bD as PayloadField, bE as PayloadFieldSchema, bF as PersistEffect, bG as PresentationType, bH as RefEffect, bI as RelatedLink, bJ as RelatedLinkSchema, bK as RelationConfig, bL as RelationConfigSchema, bM as RenderItemLambda, bN as RenderUIConfig, bO as RenderUIEffect, bP as RenderUINode, bQ as RequiredField, bR as RequiredFieldSchema, bS as ResolvedAsset, bT as ResolvedAssetInput, bU as ResolvedAssetSchema, bV as ResolvedPatternProps, bW as RestAuthConfig, bX as RestAuthConfigSchema, bY as RestServiceDef, bZ as RestServiceDefSchema, b_ as SERVICE_TYPES, b$ as SExprAtom, c0 as SExprAtomSchema, c1 as SExprInput, c2 as SExprSchema, c3 as SemanticAssetRef, c4 as SemanticAssetRefInput, c5 as SemanticAssetRefSchema, c6 as ServiceDefinition, c7 as ServiceDefinitionSchema, c8 as ServiceParams, c9 as ServiceRef, ca as ServiceRefObject, cb as ServiceRefObjectSchema, cc as ServiceRefSchema, cd as ServiceRefStringSchema, ce as ServiceType, cf as ServiceTypeSchema, cg as SetEffect, ch as SocketEvents, ci as SocketEventsSchema, cj as SocketServiceDef, ck as SocketServiceDefSchema, cl as SpawnEffect, m as State, cm as StateInput, cn as StateMachine, co as StateMachineInput, cp as StateMachineSchema, cq as StateSchema, cr as StateSemanticRole, cs as StateSemanticRoleSchema, ct as SuggestedGuard, cu as SuggestedGuardSchema, cv as SwapEffect, cw as ThemeDefinition, cx as ThemeDefinitionSchema, cy as ThemeRef, cz as ThemeRefSchema, cA as ThemeRefStringSchema, cB as ThemeTokens, cC as ThemeTokensSchema, cD as ThemeVariant, cE as ThemeVariantSchema, i as Trait, cF as TraitCategory, cG as TraitCategorySchema, cH as TraitConfigObject, cI as TraitConfigSchema, cJ as TraitConfigValue, cK as TraitConfigValueSchema, cL as TraitDataEntity, cM as TraitDataEntitySchema, cN as TraitEntityField, cO as TraitEntityFieldSchema, T as TraitEventContract, cP as TraitEventContractSchema, a as TraitEventListener, cQ as TraitEventListenerSchema, cR as TraitInput, g as TraitRef, cS as TraitRefSchema, l as TraitReference, cT as TraitReferenceInput, cU as TraitReferenceSchema, cV as TraitSchema, cW as TraitTick, cX as TraitTickSchema, cY as TraitUIBinding, cZ as Transition, c_ as TransitionInput, c$ as TransitionSchema, d0 as TypedEffect, d1 as UISlot, d2 as UISlotSchema, d3 as UI_SLOTS, d4 as UXHints, d5 as UXHintsSchema, U as UseDeclaration, d6 as UseDeclarationSchema, d7 as UserPersona, d8 as UserPersonaInput, d9 as UserPersonaSchema, da as VISUAL_STYLES, db as ViewType, dc as ViewTypeSchema, dd as VisualStyle, de as VisualStyleSchema, df as WatchEffect, dg as WatchOptions, dh as atomic, di as callService, dj as collectBindings, dk as createAssetKey, dl as deref, dm as deriveCollection, dn as despawn, dp as doEffects, dq as emit, dr as findService, ds as getArgs, dt as getDefaultAnimationsForRole, du as getOperator, dv as getServiceNames, dw as getTraitConfig, dx as getTraitName, dy as hasService, dz as isBinding, dA as isCircuitEvent, dB as isEffect, dC as isEntityCall, dD as isEntityReference, dE as isEntityReferenceAny, dF as isImportedTraitRef, dG as isInlineTrait, dH as isMcpService, dI as isOrbitalDefinition, dJ as isPageReference, dK as isPageReferenceObject, dL as isPageReferenceString, dM as isRestService, dN as isRuntimeEntity, dO as isSExpr, dP as isSExprAtom, dQ as isSExprCall, dR as isSExprEffect, dS as isServiceReference, dT as isServiceReferenceObject, dU as isSingletonEntity, dV as isSocketService, dW as isThemeReference, dX as isValidBinding, dY as navigate, dZ as normalizeTraitRef, d_ as notify, d$ as parseAssetKey, e0 as parseBinding, e1 as parseEntityRef, e2 as parseImportedTraitRef, e3 as parseOrbitalSchema, e4 as parsePageRef, e5 as parseServiceRef, e6 as persist, e7 as ref, e8 as renderUI, e9 as safeParseOrbitalSchema, ea as set, eb as sexpr, ec as spawn, ed as swap, ee as validateAssetAnimations, ef as walkSExpr, eg as watch } from '../schema-4TWKcBt4.js';
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
export { PATTERN_TYPES, PatternConfig, PatternType, isValidPatternType } from '@almadar/patterns';
|
|
5
5
|
|