@hashgraph/solo
    Preparing search index...

    Adapter for handling conversion of strings to a given class instance type.

    interface Converter<T> {
        appliesTo(type: ClassConstructor<T>): boolean;
        convert(value: string): T;
    }

    Type Parameters

    • T
    Index

    Methods

    • Converts the supplied value to an instance of the class.

      Parameters

      • value: string

        the supplied value.

      Returns T

      the class instance or a null reference.