projects/netgrif-components-core/src/lib/search/models/wrap-result.ts
Result from the wrapInputWithQuotes() function.
Properties |
value |
value:
|
Type : string
|
The value wrapped with double quotes |
wasWrapped |
wasWrapped:
|
Type : boolean
|
Whether the value was wrapped or not |
export interface WrapResult {
/**
* The value wrapped with double quotes `"`
*/
value: string;
/**
* Whether the value was wrapped or not
*/
wasWrapped: boolean;
}