flemo 1.3.2 → 1.3.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.d.ts +1 -1
- package/dist/index.mjs +559 -475
- package/dist/screen/LayoutScreen.d.ts +2 -7
- package/dist/screen/Screen.d.ts +6 -0
- package/dist/screen/ScreenMotion.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ export { default as createTransition } from './transition/createTransition';
|
|
|
8
8
|
export { default as createRawTransition } from './transition/createRawTransition';
|
|
9
9
|
export { default as createDecorator } from './transition/decorator/createDecorator';
|
|
10
10
|
export { default as createRawDecorator } from './transition/decorator/createRawDecorator';
|
|
11
|
-
export { default as Screen } from './screen/Screen';
|
|
11
|
+
export { default as Screen, type ScreenProps } from './screen/Screen';
|
|
12
12
|
export { default as LayoutScreen } from './screen/LayoutScreen';
|
|
13
13
|
export { default as LayoutConfig } from './screen/LayoutConfig';
|
|
14
14
|
export type { TransitionName, RegisterTransition } from './transition/typing';
|