@vue/runtime-core 3.2.40 → 3.2.41
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/runtime-core.cjs.js +7715 -7698
- package/dist/runtime-core.cjs.prod.js +6135 -6124
- package/dist/runtime-core.d.ts +6 -1
- package/dist/runtime-core.esm-bundler.js +7801 -7784
- package/package.json +3 -3
package/dist/runtime-core.d.ts
CHANGED
|
@@ -805,6 +805,11 @@ declare interface DevtoolsHook {
|
|
|
805
805
|
once: (event: string, handler: Function) => void;
|
|
806
806
|
off: (event: string, handler: Function) => void;
|
|
807
807
|
appRecords: AppRecord[];
|
|
808
|
+
/**
|
|
809
|
+
* Added at https://github.com/vuejs/devtools/commit/f2ad51eea789006ab66942e5a27c0f0986a257f9
|
|
810
|
+
* Returns wether the arg was buffered or not
|
|
811
|
+
*/
|
|
812
|
+
cleanupBuffer?: (matchArg: unknown) => boolean;
|
|
808
813
|
}
|
|
809
814
|
|
|
810
815
|
export declare type Directive<T = any, V = any> = ObjectDirective<T, V> | FunctionDirective<T, V>;
|
|
@@ -935,7 +940,7 @@ export declare function h(type: typeof Fragment, children?: VNodeArrayChildren):
|
|
|
935
940
|
|
|
936
941
|
export declare function h(type: typeof Fragment, props?: RawProps | null, children?: VNodeArrayChildren): VNode;
|
|
937
942
|
|
|
938
|
-
export declare function h(type: typeof Teleport, props: RawProps & TeleportProps, children: RawChildren): VNode;
|
|
943
|
+
export declare function h(type: typeof Teleport, props: RawProps & TeleportProps, children: RawChildren | RawSlots): VNode;
|
|
939
944
|
|
|
940
945
|
export declare function h(type: typeof Suspense, children?: RawChildren): VNode;
|
|
941
946
|
|