Skip to content

Commit f7999ec

Browse files
committed
feat: support multi check on TAttributeService
1 parent 5a3491b commit f7999ec

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "next-flow-interface",
3-
"version": "0.22.6",
3+
"version": "0.22.7",
44
"description": "Interface package for NEXT FlOW. You can use this package to build your own plugin that can control anything.",
55
"type": "module",
66
"module": "dist/index.js",

src/service/target/attribute/t-attributes-service-api.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,9 @@ export default interface TAttributesServiceApi {
1818

1919
multiSet<T>(path: string | RvPath, value: T): void
2020

21+
check<T>(path: string | RvPath): void
22+
23+
multiCheck<T>(path: string | RvPath): void
24+
2125
get<T>(path: string | RvPath): T | null
2226
}

0 commit comments

Comments
 (0)