/**
* Result from the [wrapInputWithQuotes()]{@link Operator#wrapInputWithQuotes} function.
*/
export interfaceWrapResult{
/**
* The value wrapped with double quotes `"`
*/
value: string;
/**
* Whether the value was wrapped or not
*/
wasWrapped: boolean;
}