We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4057e14 commit 868729fCopy full SHA for 868729f
templates/node/index.d.ts.twig
@@ -157,6 +157,18 @@ declare module "{{ language.params.npmPackage|caseDash }}" {
157
158
static greaterThanEqual(attribute: string, value: QueryTypes): string;
159
160
+ static isNull(attribute: string): string;
161
+
162
+ static isNotNull(attribute: string): string;
163
164
+ static between<T extends string | number>(attribute: string, start: T, end: T): string;
165
166
+ static startsWith(attribute: string, value: string): string;
167
168
+ static endsWith(attribute: string, value: string): string;
169
170
+ static select(attributes: string[]): string;
171
172
static search(attribute: string, value: string): string;
173
174
static orderDesc(attribute: string): string;
0 commit comments