@mcabreradev/filter
Version:
A powerful, SQL-like array filtering library for TypeScript and JavaScript with advanced pattern matching, MongoDB-style operators, deep object comparison, and zero dependencies
22 lines • 722 B
TypeScript
export declare const TREE_SYMBOLS: {
readonly BRANCH: "├──";
readonly LAST_BRANCH: "└──";
readonly VERTICAL: "│";
readonly SPACE: " ";
readonly HORIZONTAL: "───";
};
export declare const OPERATOR_LABELS: Record<string, string>;
export declare const ANSI_COLORS: {
readonly RESET: "\u001B[0m";
readonly BRIGHT: "\u001B[1m";
readonly DIM: "\u001B[2m";
readonly RED: "\u001B[31m";
readonly GREEN: "\u001B[32m";
readonly YELLOW: "\u001B[33m";
readonly BLUE: "\u001B[34m";
readonly MAGENTA: "\u001B[35m";
readonly CYAN: "\u001B[36m";
readonly WHITE: "\u001B[37m";
readonly GRAY: "\u001B[90m";
};
//# sourceMappingURL=debug.constants.d.ts.map