mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-17 05:45:51 +00:00
46 lines
1.4 KiB
TypeScript
46 lines
1.4 KiB
TypeScript
// Type declarations for custom Ink JSX elements
|
|
// Note: The detailed prop types are defined in ink-jsx.d.ts via React module augmentation.
|
|
// This file provides the global JSX namespace fallback declarations.
|
|
import type { ReactNode, Ref } from 'react';
|
|
import type { ClickEvent, FocusEvent, KeyboardEvent, Styles, TextStyles, DOMElement } from '@anthropic/ink';
|
|
|
|
declare global {
|
|
namespace JSX {
|
|
interface IntrinsicElements {
|
|
'ink-box': {
|
|
ref?: Ref<DOMElement>;
|
|
tabIndex?: number;
|
|
autoFocus?: boolean;
|
|
onClick?: (event: ClickEvent) => void;
|
|
onFocus?: (event: FocusEvent) => void;
|
|
onFocusCapture?: (event: FocusEvent) => void;
|
|
onBlur?: (event: FocusEvent) => void;
|
|
onBlurCapture?: (event: FocusEvent) => void;
|
|
onMouseEnter?: () => void;
|
|
onMouseLeave?: () => void;
|
|
onKeyDown?: (event: KeyboardEvent) => void;
|
|
onKeyDownCapture?: (event: KeyboardEvent) => void;
|
|
style?: Styles;
|
|
stickyScroll?: boolean;
|
|
children?: ReactNode;
|
|
};
|
|
'ink-text': {
|
|
style?: Styles;
|
|
textStyles?: TextStyles;
|
|
children?: ReactNode;
|
|
};
|
|
'ink-link': {
|
|
href?: string;
|
|
children?: ReactNode;
|
|
};
|
|
'ink-raw-ansi': {
|
|
rawText?: string;
|
|
rawWidth?: number;
|
|
rawHeight?: number;
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|
|
export {};
|