mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
29 lines
789 B
TypeScript
29 lines
789 B
TypeScript
// Type definitions for react-highlight 0.12
|
|
// Project: https://github.com/akiran/react-highlight
|
|
// Definitions by: Josh Goldberg <https://github.com/joshuakgoldberg>, JP Lew <https://github.com/jplew>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.8
|
|
|
|
import * as React from 'react';
|
|
|
|
/**
|
|
* Props for a Highlight component.
|
|
*/
|
|
export interface HighlightProps {
|
|
/**
|
|
* Language name to use as a class to signal type to highlight.js.
|
|
*/
|
|
className?: string;
|
|
/**
|
|
* Set innerHTML=true to highlight multiple code snippets at a time.
|
|
*/
|
|
innerHTML?: boolean;
|
|
}
|
|
|
|
/**
|
|
* Visually prettifies child code with highlight.js.
|
|
*/
|
|
declare const Highlight: React.ComponentClass<HighlightProps>;
|
|
|
|
export default Highlight;
|