projects/netgrif-components-core/src/lib/search/models/escape-result.ts
Result from the escapeInput() function.
Properties |
value |
value:
|
Type : string
|
The escaped value. |
wasEscaped |
wasEscaped:
|
Type : boolean
|
Whether some characters had been escaped or not. |
export interface EscapeResult {
/**
* The escaped value.
*/
value: string;
/**
* Whether some characters had been escaped or not.
*/
wasEscaped: boolean;
}