UNPKG

@netgrif/components-core

Version:

Netgrif Application engine frontend core Angular library

14 lines (13 loc) 273 B
/** * Result from the [escapeInput()]{@link Operator#escapeInput} function. */ export interface EscapeResult { /** * The escaped value. */ value: string; /** * Whether some characters had been escaped or not. */ wasEscaped: boolean; }