@copilotkit/react-ui
Version:
<div align="center"> <a href="https://copilotkit.ai" target="_blank"> <img src="https://github.com/copilotkit/copilotkit/raw/main/assets/banner.png" alt="CopilotKit Logo"> </a>
15 lines (12 loc) • 392 B
TypeScript
import { FC } from 'react';
interface Props {
language: string;
value: string;
}
interface languageMap {
[key: string]: string | undefined;
}
declare const programmingLanguages: languageMap;
declare const generateRandomString: (length: number, lowercase?: boolean) => string;
declare const CodeBlock: FC<Props>;
export { CodeBlock, generateRandomString, programmingLanguages };