export function defineUntypedSchema<T extends SchemaDefinition>(options: T)
Otherwise I don't believe the return value to be strongly-typed; plus I may want to provide the generic explicitly and make sure that options corresponds to it (with appropriate $resolve functions, etc).
Could we use a generic here-
https://github.com/unjs/untyped/blob/a98cf7560c06de400354fe54e250de860b569628/src/utils.ts#L4
Otherwise I don't believe the return value to be strongly-typed; plus I may want to provide the generic explicitly and make sure that
options
corresponds to it (with appropriate$resolve
functions, etc).