mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
[FIX] reactivity: export Reactive type
This commit is contained in:
@@ -14,6 +14,9 @@ import {
|
|||||||
} from "./blockdom";
|
} from "./blockdom";
|
||||||
import { mainEventHandler } from "./component/handler";
|
import { mainEventHandler } from "./component/handler";
|
||||||
import { Portal } from "./portal";
|
import { Portal } from "./portal";
|
||||||
|
export type { Reactive } from "./reactivity";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
config.shouldNormalizeDom = false;
|
config.shouldNormalizeDom = false;
|
||||||
config.mainEventHandler = mainEventHandler;
|
config.mainEventHandler = mainEventHandler;
|
||||||
|
|||||||
+1
-1
@@ -9,7 +9,7 @@ const KEYCHANGES = Symbol("Key changes");
|
|||||||
type ObjectKey = string | number | symbol;
|
type ObjectKey = string | number | symbol;
|
||||||
type Target = object;
|
type Target = object;
|
||||||
type Callback = () => void;
|
type Callback = () => void;
|
||||||
type Reactive<T extends Target = Target> = T & {
|
export type Reactive<T extends Target = Target> = T & {
|
||||||
[TARGET]: any;
|
[TARGET]: any;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user