remoraid 2.5.6 → 2.7.2
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/core/index.cjs +338 -271
- package/dist/core/index.d.ts +95 -63
- package/dist/core/index.js +321 -253
- package/dist/server/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/server/index.d.ts
CHANGED
@@ -9,7 +9,7 @@ interface EnvironmentShellProps {
|
|
9
9
|
container?: ContainerProps3
|
10
10
|
};
|
11
11
|
}
|
12
|
-
import { PropsWithChildren as
|
12
|
+
import { PropsWithChildren as PropsWithChildren18, ReactNode as ReactNode28 } from "react";
|
13
13
|
interface ServerEnvironmentShellProps extends EnvironmentShellProps {}
|
14
|
-
declare function EnvironmentShell2({ children, environment, message }:
|
14
|
+
declare function EnvironmentShell2({ children, environment, message }: PropsWithChildren18<ServerEnvironmentShellProps>): ReactNode28;
|
15
15
|
export { ServerEnvironmentShellProps, EnvironmentShell2 as EnvironmentShell };
|