TryFrom import { TryFrom } from "destack:convert"; Fallible conversion from T. export newtype interface TryFrom { static tryFrom(value: T): Result; } language/library/src/convert/from.ds:12:15 Members static tryFrom(value: T): Result Convert value, or return an error.