@ronin/compiler 0.17.7-leo-ron-1099-experimental-393 → 0.17.7-leo-ron-1099-experimental-394
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -167,10 +167,10 @@ type DropQuery = {
|
|
167
167
|
};
|
168
168
|
type Query = {
|
169
169
|
get?: GetQuery | GetAllQuery;
|
170
|
-
set?: SetQuery
|
170
|
+
set?: SetQuery;
|
171
171
|
add?: AddQuery;
|
172
172
|
remove?: RemoveQuery;
|
173
|
-
count?: CountQuery;
|
173
|
+
count?: CountQuery | CountAllQuery;
|
174
174
|
create?: CreateQuery;
|
175
175
|
alter?: AlterQuery;
|
176
176
|
drop?: DropQuery;
|
package/package.json
CHANGED