UNPKG

283 BTypeScriptView Raw
1/**
2 * Helper utility functions for QueryBuilder.
3 */
4export declare class QueryBuilderUtils {
5 /**
6 * Checks if given value is a string representation of alias property,
7 * e.g. "post.category" or "post.id".
8 */
9 static isAliasProperty(str: any): str is string;
10}