Files
echo-nexus/node_modules/@codesandbox/sandpack-react/dist/unstyled/utils/ansi-to-react.d.ts
T

13 lines
312 B
TypeScript

/**
* Stole from https://github.com/nteract/ansi-to-react/blob/master/src/index.ts
*/
/// <reference types="react" />
declare interface Props {
children?: string;
linkify?: boolean;
className?: string;
useClasses?: boolean;
}
export default function Ansi(props: Props): JSX.Element;
export {};