vectie/bunnia/program does not have a README file
pub struct Program[Model, Msg] {
id : String
model : Model
effects : Array[@vectie/bunnia/effects.EffectEffect]
view : (Model) -> @vectie/bunnia/core.NodeNode
update : (Model, Msg) -> Step[Model]
}pub struct Step[Model] {
model : Model
effects : Array[@vectie/bunnia/effects.EffectEffect]
patches : Array[@vectie/bunnia/core.PatchPatch]
}fn[Model, Msg] program(id~ : String, model~ : Model, view~ : (Model) -> @vectie/bunnia/core.NodeNode, update~ : (Model, Msg) -> Step[Model], init_effects? : Array[@vectie/bunnia/effects.EffectEffect]) -> Program[Model, Msg]fn[Model] step(model~ : Model, effects? : Array[@vectie/bunnia/effects.EffectEffect], patches? : Array[@vectie/bunnia/core.PatchPatch]) -> Step[Model]MoonBit mini-app UI framework with Rabbita-style authoring and modular platform adapters.