import { struct } from "https://deno.land/x/fun@v2.0.0/initializable.ts";
Create an Initializable fixed to a struct using nested Initializables to create the init values within.
Type Parameters
O extends AnyReadonlyRecord
Parameters
initializables: [K in keyof O]: Initializable<O[K]>
Returns
Initializable<readonly [K in keyof O]: O[K]>