13 lines
312 B
TypeScript
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 {};
|