@danielx/civet 0.10.7 → 0.11.0
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/CHANGELOG.md +11 -0
- package/dist/browser.js +307 -114
- package/dist/main.js +375 -121
- package/dist/main.mjs +375 -121
- package/dist/node-worker.mjs +1 -1
- package/dist/types.d.ts +1 -1
- package/package.json +1 -1
package/dist/node-worker.mjs
CHANGED
package/dist/types.d.ts
CHANGED
|
@@ -32,7 +32,7 @@ declare module "@danielx/civet" {
|
|
|
32
32
|
* (Can also map to OperatorBehavior as defined in source/types.civet,
|
|
33
33
|
* but the details are subject to change.)
|
|
34
34
|
*/
|
|
35
|
-
operators: string[] | Record<string, string
|
|
35
|
+
operators: string[] | Record<string, string | undefined>
|
|
36
36
|
react: boolean
|
|
37
37
|
solid: boolean
|
|
38
38
|
client: boolean
|