mingo
Version:
MongoDB query language for in-memory objects
13 lines (12 loc) • 421 B
TypeScript
import { ExpressionOperator } from "../../../types";
/**
* Returns a substring of a string, starting at a specified index position and including the specified number of characters.
* The index is zero-based.
*
* See {@link https://www.mongodb.com/docs/manual/reference/operator/aggregation/substrBytes/}.
*
* @param obj
* @param expr
* @returns {string}
*/
export declare const $substrBytes: ExpressionOperator;