asv-hlps 1.3.98 → 1.4.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/lib/cjs/auth/models/AuthTag.d.ts +3 -1
- package/lib/cjs/auth/models/AuthTagCat.d.ts +2 -0
- package/lib/cjs/auth/models/AuthTagGrp.d.ts +3 -0
- package/lib/cjs/auth/models/AuthTagGrp.js +2 -0
- package/lib/cjs/auth/models/index.d.ts +1 -0
- package/lib/esm/auth/models/AuthTag.d.ts +3 -1
- package/lib/esm/auth/models/AuthTagCat.d.ts +2 -0
- package/lib/esm/auth/models/AuthTagGrp.d.ts +3 -0
- package/lib/esm/auth/models/AuthTagGrp.js +1 -0
- package/lib/esm/auth/models/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import
|
|
1
|
+
import AuthTagGrp from "@/auth/models/AuthTagGrp";
|
|
2
|
+
import NaCoAc from "@/shared/models/NaCoAc";
|
|
2
3
|
import AuthTagCat from "./AuthTagCat";
|
|
3
4
|
export default interface AuthTag extends NaCoAc {
|
|
4
5
|
cat?: AuthTagCat;
|
|
6
|
+
grp?: AuthTagGrp;
|
|
5
7
|
isChecked?: boolean;
|
|
6
8
|
}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import
|
|
1
|
+
import AuthTagGrp from "@/auth/models/AuthTagGrp";
|
|
2
|
+
import NaCoAc from "@/shared/models/NaCoAc";
|
|
2
3
|
import AuthTagCat from "./AuthTagCat";
|
|
3
4
|
export default interface AuthTag extends NaCoAc {
|
|
4
5
|
cat?: AuthTagCat;
|
|
6
|
+
grp?: AuthTagGrp;
|
|
5
7
|
isChecked?: boolean;
|
|
6
8
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|