Function: registerType()
registerType(
name,factory):void
Defined in: schema/helpers/fn-schema.ts:211
Register a custom type to Schema supported types.
Parameters
name
string
factory
FactoryFunction
Returns
void
Throws
Error
Example
registerType(Int8.name, (fieldName, opts) => new Int8(fieldName, opts.required));