@nodeject/ui-components
Version:
UI library for non-trivial components
14 lines (13 loc) • 460 B
TypeScript
import * as React from 'react';
export interface LayoutTalkProps {
content?: React.ReactNode;
footerContent?: React.ReactNode;
headerContent?: React.ReactNode;
goToBottomButton?: React.ReactNode;
goToTopButton?: React.ReactNode;
isChronologicalOrder?: boolean;
onContentBottomReached?: () => void;
onContentTopReached?: () => void;
target?: string;
}
export declare const LayoutTalk: React.FC<LayoutTalkProps>;