Skip to content

Commit

Permalink
[rules] Fix rule builder type definitions not available
Browse files Browse the repository at this point in the history
Due to a wrong path definition in the main TypeScript definition file, rule builder type defs were not loaded.

Signed-off-by: Florian Hotze <florianh_dev@icloud.com>
  • Loading branch information
florian-h05 committed Nov 18, 2023
1 parent 3d4c331 commit 5ad1938
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/openhab-js.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ declare global {
type QuantityType = object;
}
export const log: typeof import("./log");
export const rules: typeof import("./rules/rules");
export const rules: typeof import("./rules");
export const items: typeof import("./items/items");
export const things: typeof import("./things");
export const triggers: typeof import("./triggers");
Expand Down

0 comments on commit 5ad1938

Please sign in to comment.