cradova 3.12.3 → 3.12.4
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/dist/index.js +3 -0
- package/dist/primitives/classes.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -143,8 +143,8 @@ export declare class Router {
|
|
|
143
143
|
*/
|
|
144
144
|
export declare class RefInstance<T = unknown> {
|
|
145
145
|
private $refs;
|
|
146
|
-
current(key: string): T;
|
|
147
|
-
get refs(): Record<string, T>;
|
|
146
|
+
current(key: string): T | undefined;
|
|
147
|
+
get refs(): Record<string, T | undefined>;
|
|
148
148
|
/**
|
|
149
149
|
* Bind a DOM element to a reference name.
|
|
150
150
|
* @param name - The name to reference the DOM element by.
|