(
inTypes: InTypes,
outTypes: OutTypes,
construct: DynoBlockType<InTypes, OutTypes>,
{ update, globals }: { update?: () => void; globals?: () => string[] } = {},
)
| 382 | } |
| 383 | |
| 384 | export function dynoBlock< |
| 385 | InTypes extends Record<string, DynoType>, |
| 386 | OutTypes extends Record<string, DynoType>, |
| 387 | >( |
| 388 | inTypes: InTypes, |
| 389 | outTypes: OutTypes, |
| 390 | construct: DynoBlockType<InTypes, OutTypes>, |
| 391 | { update, globals }: { update?: () => void; globals?: () => string[] } = {}, |
| 392 | ) { |
| 393 | return new DynoBlock({ inTypes, outTypes, construct, update, globals }); |
| 394 | } |
| 395 | |
| 396 | export function dyno< |
| 397 | InTypes extends Record<string, DynoType>, |
no outgoing calls
no test coverage detected