/**
* Enum representing the side of the swap for querying available input/output tokens
*
* @category Core
*/exportenumSwapSide {
/**
* Represents input / source side of the swap
*/
INPUT = 1,
/**
* Represents output / destination side of the swap
*/
OUTPUT = 0
}