equation-sdk
Version:
🛠An SDK for building applications on top of Equation.
19 lines (18 loc) • 430 B
TypeScript
/**
* Represents the side of an equation.
*/
export declare enum Side {
LONG = 1,
SHORT = 2
}
/**
* Flips the side of an equation.
* @param side The original side of the equation.
* @returns The flipped side of the equation.
*/
export declare const SideFlip: (side: Side) => Side;
export declare enum Order_Status {
Created = "CREATED",
Executed = "EXECUTED",
Cancelled = "CANCELLED"
}