Initial commit
This commit is contained in:
commit
78f8d225ee
21173 changed files with 2907774 additions and 0 deletions
12
node_modules/next/dist/shared/lib/side-effect.d.ts
generated
vendored
Normal file
12
node_modules/next/dist/shared/lib/side-effect.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import type React from 'react';
|
||||
import { type JSX } from 'react';
|
||||
type State = JSX.Element[] | undefined;
|
||||
export type SideEffectProps = {
|
||||
reduceComponentsToState: <T extends {}>(components: Array<React.ReactElement<any>>, props: T) => State;
|
||||
handleStateChange?: (state: State) => void;
|
||||
headManager: any;
|
||||
inAmpMode?: boolean;
|
||||
children: React.ReactNode;
|
||||
};
|
||||
export default function SideEffect(props: SideEffectProps): null;
|
||||
export {};
|
||||
Loading…
Add table
Add a link
Reference in a new issue