UNPKG

@netgrif/components-core

Version:

Netgrif Application engine frontend core Angular library

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