prisma-goat 0.1.5 → 0.1.6
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/README.md +1 -1
- package/dist/prisma-goat.d.ts +2 -13
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/prisma-goat.d.ts
CHANGED
|
@@ -74,10 +74,7 @@ listMenu?: Array<{
|
|
|
74
74
|
label: string;
|
|
75
75
|
link: string;
|
|
76
76
|
}>;
|
|
77
|
-
router:
|
|
78
|
-
push: (path: string) => void;
|
|
79
|
-
events: RouterEvents;
|
|
80
|
-
};
|
|
77
|
+
router: any;
|
|
81
78
|
logo?: string;
|
|
82
79
|
heightLogo?: string;
|
|
83
80
|
widthLogo?: string;
|
|
@@ -116,10 +113,7 @@ export declare type NavbarProps = HTMLAttributes<HTMLElement> & {
|
|
|
116
113
|
label: string;
|
|
117
114
|
link: string;
|
|
118
115
|
}>;
|
|
119
|
-
router:
|
|
120
|
-
push: (path: string) => void;
|
|
121
|
-
events: RouterEvents;
|
|
122
|
-
};
|
|
116
|
+
router: any;
|
|
123
117
|
logo?: string;
|
|
124
118
|
heightLogo?: string;
|
|
125
119
|
widthLogo?: string;
|
|
@@ -136,9 +130,4 @@ export declare type NavbarProps = HTMLAttributes<HTMLElement> & {
|
|
|
136
130
|
strokeWidthIndicator?: "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14";
|
|
137
131
|
};
|
|
138
132
|
|
|
139
|
-
declare type RouterEvents = {
|
|
140
|
-
on: (event: string, callback: () => void) => void;
|
|
141
|
-
off: (event: string, callback: () => void) => void;
|
|
142
|
-
};
|
|
143
|
-
|
|
144
133
|
export { }
|