/** * @module botbuilder-dialogs */ /** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ /** * The converter converts object from one type to another. */ export interface Converter { convert(value: From | To): To; } export type ConverterFactory = { new (...args: unknown[]): Converter; };