Interface ComplexAttributeConverter<Type, TypeHint>

    interface ComplexAttributeConverter<Type = unknown, TypeHint = unknown> {
        fromAttribute(value: string | null, type?: TypeHint): Type;
        toAttribute(value: Type, type?: TypeHint): unknown;
    }

    Type Parameters

    • Type = unknown
    • TypeHint = unknown
    Index

    Methods