TypeScript type for a Ref schema.
This is the type of the SCHEMA itself, not the runtime ref instance.
For the instance type, use Ref.Ref<T> from the Ref module.
Example
// Schema type annotation (rarely needed, usually inferred): constrefSchema: Type.Ref<Task> = Type.Ref(Task);
TypeScript type for a Ref schema. This is the type of the SCHEMA itself, not the runtime ref instance. For the instance type, use
Ref.Ref<T>from the Ref module.Example