@types/react-syntax-highlighter
Advanced tools
Comparing version 10.1.0 to 10.2.0
@@ -1,9 +0,12 @@ | ||
// Type definitions for react-syntax-highlighter 10.1 | ||
// Type definitions for react-syntax-highlighter 10.2 | ||
// Project: https://github.com/conorhastings/react-syntax-highlighter | ||
// Definitions by: Ivo Stratev <https://github.com/NoHomey> | ||
// Aimee Gamble-Milner <https://github.com/ajgamble-milner> | ||
// Guo Yunhe <https://github.com/guoyunhe> | ||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | ||
// TypeScript Version: 2.8 | ||
type lineTagPropsFunction = (lineNumber: number) => React.DOMAttributes<HTMLElement> | ||
type lineTagPropsFunction = ( | ||
lineNumber: number | ||
) => React.DOMAttributes<HTMLElement>; | ||
@@ -14,3 +17,3 @@ interface SyntaxHighlighterProps { | ||
customStyle?: any; | ||
lineProps?: lineTagPropsFunction | React.DOMAttributes<HTMLElement> | ||
lineProps?: lineTagPropsFunction | React.DOMAttributes<HTMLElement>; | ||
codeTagProps?: React.DOMAttributes<HTMLElement>; | ||
@@ -24,107 +27,319 @@ useInlineStyles?: boolean; | ||
declare module 'react-syntax-highlighter' { | ||
import SyntaxHighlighter from 'react-syntax-highlighter/light'; | ||
export default SyntaxHighlighter; | ||
declare module "react-syntax-highlighter" { | ||
export { default } from "react-syntax-highlighter/default-highlight"; | ||
export { | ||
default as LightAsync | ||
} from "react-syntax-highlighter/light-async"; | ||
export { default as Light } from "react-syntax-highlighter/light"; | ||
export { | ||
default as PrismAsyncLight | ||
} from "react-syntax-highlighter/prism-async-light"; | ||
export { | ||
default as PrismAsync | ||
} from "react-syntax-highlighter/prism-async"; | ||
export { | ||
default as PrismLight | ||
} from "react-syntax-highlighter/prism-light"; | ||
export { default as Prism } from "react-syntax-highlighter/prism"; | ||
} | ||
declare module 'react-syntax-highlighter/light' { | ||
import * as React from 'react'; | ||
export function registerLanguage(name: string, func: any): void; | ||
export default class SyntaxHighlighter extends React.Component<SyntaxHighlighterProps> {} | ||
declare module "react-syntax-highlighter/default-highlight" { | ||
import * as React from "react"; | ||
export default class SyntaxHighlighter extends React.Component< | ||
SyntaxHighlighterProps | ||
> {} | ||
} | ||
declare module 'react-syntax-highlighter/prism' { | ||
import SyntaxHighlighter from 'react-syntax-highlighter/prism-light'; | ||
export default SyntaxHighlighter; | ||
declare module "react-syntax-highlighter/light-async" { | ||
import * as React from "react"; | ||
export default class SyntaxHighlighter extends React.Component< | ||
SyntaxHighlighterProps | ||
> { | ||
static registerLanguage(name: string, func: any): void; | ||
} | ||
} | ||
declare module 'react-syntax-highlighter/prism-light' { | ||
import * as React from 'react'; | ||
export function registerLanguage(name: string, func: any): void; | ||
export default class SyntaxHighlighter extends React.Component<SyntaxHighlighterProps> {} | ||
declare module "react-syntax-highlighter/light" { | ||
import * as React from "react"; | ||
export default class SyntaxHighlighter extends React.Component< | ||
SyntaxHighlighterProps | ||
> { | ||
static registerLanguage(name: string, func: any): void; | ||
} | ||
} | ||
declare module 'react-syntax-highlighter/dist/styles/hljs' { | ||
export { default as agate } from 'react-syntax-highlighter/dist/styles/hljs/agate'; | ||
export { default as androidstudio } from 'react-syntax-highlighter/dist/styles/hljs/androidstudio'; | ||
export { default as arduinoLight } from 'react-syntax-highlighter/dist/styles/hljs/arduino-light'; | ||
export { default as arta } from 'react-syntax-highlighter/dist/styles/hljs/arta'; | ||
export { default as ascetic } from 'react-syntax-highlighter/dist/styles/hljs/ascetic'; | ||
export { default as atelierCaveDark } from 'react-syntax-highlighter/dist/styles/hljs/atelier-cave-dark'; | ||
export { default as atelierCaveLight } from 'react-syntax-highlighter/dist/styles/hljs/atelier-cave-light'; | ||
export { default as atelierDuneDark } from 'react-syntax-highlighter/dist/styles/hljs/atelier-dune-dark'; | ||
export { default as atelierDuneLight } from 'react-syntax-highlighter/dist/styles/hljs/atelier-dune-light'; | ||
export { default as atelierEstuaryDark } from 'react-syntax-highlighter/dist/styles/hljs/atelier-estuary-dark'; | ||
export { default as atelierEstuaryLight } from 'react-syntax-highlighter/dist/styles/hljs/atelier-estuary-light'; | ||
export { default as atelierForestDark } from 'react-syntax-highlighter/dist/styles/hljs/atelier-forest-dark'; | ||
export { default as atelierForestLight } from 'react-syntax-highlighter/dist/styles/hljs/atelier-forest-light'; | ||
export { default as atelierHeathDark } from 'react-syntax-highlighter/dist/styles/hljs/atelier-heath-dark'; | ||
export { default as atelierHeathLight } from 'react-syntax-highlighter/dist/styles/hljs/atelier-heath-light'; | ||
export { default as atelierLakesideDark } from 'react-syntax-highlighter/dist/styles/hljs/atelier-lakeside-dark'; | ||
export { default as atelierLakesideLight } from 'react-syntax-highlighter/dist/styles/hljs/atelier-lakeside-light'; | ||
export { default as atelierPlateauDark } from 'react-syntax-highlighter/dist/styles/hljs/atelier-plateau-dark'; | ||
export { default as atelierPlateauLight } from 'react-syntax-highlighter/dist/styles/hljs/atelier-plateau-light'; | ||
export { default as atelierSavannaDark } from 'react-syntax-highlighter/dist/styles/hljs/atelier-savanna-dark'; | ||
export { default as atelierSavannaLight } from 'react-syntax-highlighter/dist/styles/hljs/atelier-savanna-light'; | ||
export { default as atelierSeasideDark } from 'react-syntax-highlighter/dist/styles/hljs/atelier-seaside-dark'; | ||
export { default as atelierSeasideLight } from 'react-syntax-highlighter/dist/styles/hljs/atelier-seaside-light'; | ||
export { default as atelierSulphurpoolDark } from 'react-syntax-highlighter/dist/styles/hljs/atelier-sulphurpool-dark'; | ||
export { default as atelierSulphurpoolLight } from 'react-syntax-highlighter/dist/styles/hljs/atelier-sulphurpool-light'; | ||
export { default as atomOneDark } from 'react-syntax-highlighter/dist/styles/hljs/atom-one-dark'; | ||
export { default as atomOneLight } from 'react-syntax-highlighter/dist/styles/hljs/atom-one-light'; | ||
export { default as brownPaper } from 'react-syntax-highlighter/dist/styles/hljs/brown-paper'; | ||
export { default as codepenEmbed } from 'react-syntax-highlighter/dist/styles/hljs/codepen-embed'; | ||
export { default as colorBrewer } from 'react-syntax-highlighter/dist/styles/hljs/color-brewer'; | ||
export { default as darcula } from 'react-syntax-highlighter/dist/styles/hljs/darcula'; | ||
export { default as dark } from 'react-syntax-highlighter/dist/styles/hljs/dark'; | ||
export { default as darkula } from 'react-syntax-highlighter/dist/styles/hljs/darkula'; | ||
export { default as defaultStyle } from 'react-syntax-highlighter/dist/styles/hljs/default-style'; | ||
export { default as docco } from 'react-syntax-highlighter/dist/styles/hljs/docco'; | ||
export { default as dracula } from 'react-syntax-highlighter/dist/styles/hljs/dracula'; | ||
export { default as far } from 'react-syntax-highlighter/dist/styles/hljs/far'; | ||
export { default as foundation } from 'react-syntax-highlighter/dist/styles/hljs/foundation'; | ||
export { default as githubGist } from 'react-syntax-highlighter/dist/styles/hljs/github-gist'; | ||
export { default as github } from 'react-syntax-highlighter/dist/styles/hljs/github'; | ||
export { default as googlecode } from 'react-syntax-highlighter/dist/styles/hljs/googlecode'; | ||
export { default as grayscale } from 'react-syntax-highlighter/dist/styles/hljs/grayscale'; | ||
export { default as gruvboxDark } from 'react-syntax-highlighter/dist/styles/hljs/gruvbox-dark'; | ||
export { default as gruvboxLight } from 'react-syntax-highlighter/dist/styles/hljs/gruvbox-light'; | ||
export { default as hopscotch } from 'react-syntax-highlighter/dist/styles/hljs/hopscotch'; | ||
export { default as hybrid } from 'react-syntax-highlighter/dist/styles/hljs/hybrid'; | ||
export { default as idea } from 'react-syntax-highlighter/dist/styles/hljs/idea'; | ||
export { default as irBlack } from 'react-syntax-highlighter/dist/styles/hljs/ir-black'; | ||
export { default as kimbieDark } from 'react-syntax-highlighter/dist/styles/hljs/kimbie.dark'; | ||
export { default as kimbieLight } from 'react-syntax-highlighter/dist/styles/hljs/kimbie.light'; | ||
export { default as magula } from 'react-syntax-highlighter/dist/styles/hljs/magula'; | ||
export { default as monoBlue } from 'react-syntax-highlighter/dist/styles/hljs/mono-blue'; | ||
export { default as monokaiSublime } from 'react-syntax-highlighter/dist/styles/hljs/monokai-sublime'; | ||
export { default as monokai } from 'react-syntax-highlighter/dist/styles/hljs/monokai'; | ||
export { default as obsidian } from 'react-syntax-highlighter/dist/styles/hljs/obsidian'; | ||
export { default as ocean } from 'react-syntax-highlighter/dist/styles/hljs/ocean'; | ||
export { default as paraisoDark } from 'react-syntax-highlighter/dist/styles/hljs/paraiso-dark'; | ||
export { default as paraisoLight } from 'react-syntax-highlighter/dist/styles/hljs/paraiso-light'; | ||
export { default as pojoaque } from 'react-syntax-highlighter/dist/styles/hljs/pojoaque'; | ||
export { default as purebasic } from 'react-syntax-highlighter/dist/styles/hljs/purebasic'; | ||
export { default as qtcreatorDark } from 'react-syntax-highlighter/dist/styles/hljs/qtcreator_dark'; | ||
export { default as qtcreatorLight } from 'react-syntax-highlighter/dist/styles/hljs/qtcreator_light'; | ||
export { default as railscasts } from 'react-syntax-highlighter/dist/styles/hljs/railscasts'; | ||
export { default as rainbow } from 'react-syntax-highlighter/dist/styles/hljs/rainbow'; | ||
export { default as routeros } from 'react-syntax-highlighter/dist/styles/hljs/routeros'; | ||
export { default as schoolBook } from 'react-syntax-highlighter/dist/styles/hljs/school-book'; | ||
export { default as solarizedDark } from 'react-syntax-highlighter/dist/styles/hljs/solarized-dark'; | ||
export { default as solarizedLight } from 'react-syntax-highlighter/dist/styles/hljs/solarized-light'; | ||
export { default as sunburst } from 'react-syntax-highlighter/dist/styles/hljs/sunburst'; | ||
export { default as tomorrowNightBlue } from 'react-syntax-highlighter/dist/styles/hljs/tomorrow-night-blue'; | ||
export { default as tomorrowNightBright } from 'react-syntax-highlighter/dist/styles/hljs/tomorrow-night-bright'; | ||
export { default as tomorrowNightEighties } from 'react-syntax-highlighter/dist/styles/hljs/tomorrow-night-eighties'; | ||
export { default as tomorrowNight } from 'react-syntax-highlighter/dist/styles/hljs/tomorrow-night'; | ||
export { default as tomorrow } from 'react-syntax-highlighter/dist/styles/hljs/tomorrow'; | ||
export { default as vs } from 'react-syntax-highlighter/dist/styles/hljs/vs'; | ||
export { default as vs2015 } from 'react-syntax-highlighter/dist/styles/hljs/vs2015'; | ||
export { default as xcode } from 'react-syntax-highlighter/dist/styles/hljs/xcode'; | ||
export { default as xt256 } from 'react-syntax-highlighter/dist/styles/hljs/xt256'; | ||
export { default as zenburn } from 'react-syntax-highlighter/dist/styles/hljs/zenburn'; | ||
declare module "react-syntax-highlighter/prism-async-light" { | ||
import * as React from "react"; | ||
export default class SyntaxHighlighter extends React.Component< | ||
SyntaxHighlighterProps | ||
> { | ||
static registerLanguage(name: string, func: any): void; | ||
} | ||
} | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/agate' { | ||
declare module "react-syntax-highlighter/prism-async" { | ||
import * as React from "react"; | ||
export default class SyntaxHighlighter extends React.Component< | ||
SyntaxHighlighterProps | ||
> {} | ||
} | ||
declare module "react-syntax-highlighter/prism-light" { | ||
import * as React from "react"; | ||
export default class SyntaxHighlighter extends React.Component< | ||
SyntaxHighlighterProps | ||
> { | ||
static registerLanguage(name: string, func: any): void; | ||
} | ||
} | ||
declare module "react-syntax-highlighter/prism" { | ||
import * as React from "react"; | ||
export default class SyntaxHighlighter extends React.Component< | ||
SyntaxHighlighterProps | ||
> {} | ||
} | ||
declare module "react-syntax-highlighter/dist/styles/hljs" { | ||
export { | ||
default as agate | ||
} from "react-syntax-highlighter/dist/styles/hljs/agate"; | ||
export { | ||
default as androidstudio | ||
} from "react-syntax-highlighter/dist/styles/hljs/androidstudio"; | ||
export { | ||
default as arduinoLight | ||
} from "react-syntax-highlighter/dist/styles/hljs/arduino-light"; | ||
export { | ||
default as arta | ||
} from "react-syntax-highlighter/dist/styles/hljs/arta"; | ||
export { | ||
default as ascetic | ||
} from "react-syntax-highlighter/dist/styles/hljs/ascetic"; | ||
export { | ||
default as atelierCaveDark | ||
} from "react-syntax-highlighter/dist/styles/hljs/atelier-cave-dark"; | ||
export { | ||
default as atelierCaveLight | ||
} from "react-syntax-highlighter/dist/styles/hljs/atelier-cave-light"; | ||
export { | ||
default as atelierDuneDark | ||
} from "react-syntax-highlighter/dist/styles/hljs/atelier-dune-dark"; | ||
export { | ||
default as atelierDuneLight | ||
} from "react-syntax-highlighter/dist/styles/hljs/atelier-dune-light"; | ||
export { | ||
default as atelierEstuaryDark | ||
} from "react-syntax-highlighter/dist/styles/hljs/atelier-estuary-dark"; | ||
export { | ||
default as atelierEstuaryLight | ||
} from "react-syntax-highlighter/dist/styles/hljs/atelier-estuary-light"; | ||
export { | ||
default as atelierForestDark | ||
} from "react-syntax-highlighter/dist/styles/hljs/atelier-forest-dark"; | ||
export { | ||
default as atelierForestLight | ||
} from "react-syntax-highlighter/dist/styles/hljs/atelier-forest-light"; | ||
export { | ||
default as atelierHeathDark | ||
} from "react-syntax-highlighter/dist/styles/hljs/atelier-heath-dark"; | ||
export { | ||
default as atelierHeathLight | ||
} from "react-syntax-highlighter/dist/styles/hljs/atelier-heath-light"; | ||
export { | ||
default as atelierLakesideDark | ||
} from "react-syntax-highlighter/dist/styles/hljs/atelier-lakeside-dark"; | ||
export { | ||
default as atelierLakesideLight | ||
} from "react-syntax-highlighter/dist/styles/hljs/atelier-lakeside-light"; | ||
export { | ||
default as atelierPlateauDark | ||
} from "react-syntax-highlighter/dist/styles/hljs/atelier-plateau-dark"; | ||
export { | ||
default as atelierPlateauLight | ||
} from "react-syntax-highlighter/dist/styles/hljs/atelier-plateau-light"; | ||
export { | ||
default as atelierSavannaDark | ||
} from "react-syntax-highlighter/dist/styles/hljs/atelier-savanna-dark"; | ||
export { | ||
default as atelierSavannaLight | ||
} from "react-syntax-highlighter/dist/styles/hljs/atelier-savanna-light"; | ||
export { | ||
default as atelierSeasideDark | ||
} from "react-syntax-highlighter/dist/styles/hljs/atelier-seaside-dark"; | ||
export { | ||
default as atelierSeasideLight | ||
} from "react-syntax-highlighter/dist/styles/hljs/atelier-seaside-light"; | ||
export { | ||
default as atelierSulphurpoolDark | ||
} from "react-syntax-highlighter/dist/styles/hljs/atelier-sulphurpool-dark"; | ||
export { | ||
default as atelierSulphurpoolLight | ||
} from "react-syntax-highlighter/dist/styles/hljs/atelier-sulphurpool-light"; | ||
export { | ||
default as atomOneDark | ||
} from "react-syntax-highlighter/dist/styles/hljs/atom-one-dark"; | ||
export { | ||
default as atomOneLight | ||
} from "react-syntax-highlighter/dist/styles/hljs/atom-one-light"; | ||
export { | ||
default as brownPaper | ||
} from "react-syntax-highlighter/dist/styles/hljs/brown-paper"; | ||
export { | ||
default as codepenEmbed | ||
} from "react-syntax-highlighter/dist/styles/hljs/codepen-embed"; | ||
export { | ||
default as colorBrewer | ||
} from "react-syntax-highlighter/dist/styles/hljs/color-brewer"; | ||
export { | ||
default as darcula | ||
} from "react-syntax-highlighter/dist/styles/hljs/darcula"; | ||
export { | ||
default as dark | ||
} from "react-syntax-highlighter/dist/styles/hljs/dark"; | ||
export { | ||
default as darkula | ||
} from "react-syntax-highlighter/dist/styles/hljs/darkula"; | ||
export { | ||
default as defaultStyle | ||
} from "react-syntax-highlighter/dist/styles/hljs/default-style"; | ||
export { | ||
default as docco | ||
} from "react-syntax-highlighter/dist/styles/hljs/docco"; | ||
export { | ||
default as dracula | ||
} from "react-syntax-highlighter/dist/styles/hljs/dracula"; | ||
export { | ||
default as far | ||
} from "react-syntax-highlighter/dist/styles/hljs/far"; | ||
export { | ||
default as foundation | ||
} from "react-syntax-highlighter/dist/styles/hljs/foundation"; | ||
export { | ||
default as githubGist | ||
} from "react-syntax-highlighter/dist/styles/hljs/github-gist"; | ||
export { | ||
default as github | ||
} from "react-syntax-highlighter/dist/styles/hljs/github"; | ||
export { | ||
default as googlecode | ||
} from "react-syntax-highlighter/dist/styles/hljs/googlecode"; | ||
export { | ||
default as grayscale | ||
} from "react-syntax-highlighter/dist/styles/hljs/grayscale"; | ||
export { | ||
default as gruvboxDark | ||
} from "react-syntax-highlighter/dist/styles/hljs/gruvbox-dark"; | ||
export { | ||
default as gruvboxLight | ||
} from "react-syntax-highlighter/dist/styles/hljs/gruvbox-light"; | ||
export { | ||
default as hopscotch | ||
} from "react-syntax-highlighter/dist/styles/hljs/hopscotch"; | ||
export { | ||
default as hybrid | ||
} from "react-syntax-highlighter/dist/styles/hljs/hybrid"; | ||
export { | ||
default as idea | ||
} from "react-syntax-highlighter/dist/styles/hljs/idea"; | ||
export { | ||
default as irBlack | ||
} from "react-syntax-highlighter/dist/styles/hljs/ir-black"; | ||
export { | ||
default as kimbieDark | ||
} from "react-syntax-highlighter/dist/styles/hljs/kimbie.dark"; | ||
export { | ||
default as kimbieLight | ||
} from "react-syntax-highlighter/dist/styles/hljs/kimbie.light"; | ||
export { | ||
default as magula | ||
} from "react-syntax-highlighter/dist/styles/hljs/magula"; | ||
export { | ||
default as monoBlue | ||
} from "react-syntax-highlighter/dist/styles/hljs/mono-blue"; | ||
export { | ||
default as monokaiSublime | ||
} from "react-syntax-highlighter/dist/styles/hljs/monokai-sublime"; | ||
export { | ||
default as monokai | ||
} from "react-syntax-highlighter/dist/styles/hljs/monokai"; | ||
export { | ||
default as obsidian | ||
} from "react-syntax-highlighter/dist/styles/hljs/obsidian"; | ||
export { | ||
default as ocean | ||
} from "react-syntax-highlighter/dist/styles/hljs/ocean"; | ||
export { | ||
default as paraisoDark | ||
} from "react-syntax-highlighter/dist/styles/hljs/paraiso-dark"; | ||
export { | ||
default as paraisoLight | ||
} from "react-syntax-highlighter/dist/styles/hljs/paraiso-light"; | ||
export { | ||
default as pojoaque | ||
} from "react-syntax-highlighter/dist/styles/hljs/pojoaque"; | ||
export { | ||
default as purebasic | ||
} from "react-syntax-highlighter/dist/styles/hljs/purebasic"; | ||
export { | ||
default as qtcreatorDark | ||
} from "react-syntax-highlighter/dist/styles/hljs/qtcreator_dark"; | ||
export { | ||
default as qtcreatorLight | ||
} from "react-syntax-highlighter/dist/styles/hljs/qtcreator_light"; | ||
export { | ||
default as railscasts | ||
} from "react-syntax-highlighter/dist/styles/hljs/railscasts"; | ||
export { | ||
default as rainbow | ||
} from "react-syntax-highlighter/dist/styles/hljs/rainbow"; | ||
export { | ||
default as routeros | ||
} from "react-syntax-highlighter/dist/styles/hljs/routeros"; | ||
export { | ||
default as schoolBook | ||
} from "react-syntax-highlighter/dist/styles/hljs/school-book"; | ||
export { | ||
default as solarizedDark | ||
} from "react-syntax-highlighter/dist/styles/hljs/solarized-dark"; | ||
export { | ||
default as solarizedLight | ||
} from "react-syntax-highlighter/dist/styles/hljs/solarized-light"; | ||
export { | ||
default as sunburst | ||
} from "react-syntax-highlighter/dist/styles/hljs/sunburst"; | ||
export { | ||
default as tomorrowNightBlue | ||
} from "react-syntax-highlighter/dist/styles/hljs/tomorrow-night-blue"; | ||
export { | ||
default as tomorrowNightBright | ||
} from "react-syntax-highlighter/dist/styles/hljs/tomorrow-night-bright"; | ||
export { | ||
default as tomorrowNightEighties | ||
} from "react-syntax-highlighter/dist/styles/hljs/tomorrow-night-eighties"; | ||
export { | ||
default as tomorrowNight | ||
} from "react-syntax-highlighter/dist/styles/hljs/tomorrow-night"; | ||
export { | ||
default as tomorrow | ||
} from "react-syntax-highlighter/dist/styles/hljs/tomorrow"; | ||
export { | ||
default as vs | ||
} from "react-syntax-highlighter/dist/styles/hljs/vs"; | ||
export { | ||
default as vs2015 | ||
} from "react-syntax-highlighter/dist/styles/hljs/vs2015"; | ||
export { | ||
default as xcode | ||
} from "react-syntax-highlighter/dist/styles/hljs/xcode"; | ||
export { | ||
default as xt256 | ||
} from "react-syntax-highlighter/dist/styles/hljs/xt256"; | ||
export { | ||
default as zenburn | ||
} from "react-syntax-highlighter/dist/styles/hljs/zenburn"; | ||
} | ||
declare module "react-syntax-highlighter/dist/styles/hljs/agate" { | ||
const style: any; | ||
@@ -134,3 +349,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/androidstudio' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/androidstudio" { | ||
const style: any; | ||
@@ -140,3 +355,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/arduino-light' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/arduino-light" { | ||
const style: any; | ||
@@ -146,3 +361,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/arta' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/arta" { | ||
const style: any; | ||
@@ -152,3 +367,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/ascetic' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/ascetic" { | ||
const style: any; | ||
@@ -158,3 +373,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/atelier-cave-dark' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/atelier-cave-dark" { | ||
const style: any; | ||
@@ -164,3 +379,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/atelier-cave-light' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/atelier-cave-light" { | ||
const style: any; | ||
@@ -170,3 +385,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/atelier-dune-dark' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/atelier-dune-dark" { | ||
const style: any; | ||
@@ -176,3 +391,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/atelier-dune-light' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/atelier-dune-light" { | ||
const style: any; | ||
@@ -182,3 +397,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/atelier-estuary-dark' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/atelier-estuary-dark" { | ||
const style: any; | ||
@@ -188,3 +403,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/atelier-estuary-light' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/atelier-estuary-light" { | ||
const style: any; | ||
@@ -194,3 +409,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/atelier-forest-dark' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/atelier-forest-dark" { | ||
const style: any; | ||
@@ -200,3 +415,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/atelier-forest-light' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/atelier-forest-light" { | ||
const style: any; | ||
@@ -206,4 +421,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/atelier-heath-dark' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/atelier-heath-dark" { | ||
const style: any; | ||
@@ -213,4 +427,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/atelier-heath-light' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/atelier-heath-light" { | ||
const style: any; | ||
@@ -220,3 +433,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/atelier-lakeside-dark' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/atelier-lakeside-dark" { | ||
const style: any; | ||
@@ -226,3 +439,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/atelier-lakeside-light' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/atelier-lakeside-light" { | ||
const style: any; | ||
@@ -232,3 +445,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/atelier-plateau-dark' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/atelier-plateau-dark" { | ||
const style: any; | ||
@@ -238,3 +451,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/atelier-plateau-light' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/atelier-plateau-light" { | ||
const style: any; | ||
@@ -244,3 +457,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/atelier-savanna-dark' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/atelier-savanna-dark" { | ||
const style: any; | ||
@@ -250,3 +463,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/atelier-savanna-light' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/atelier-savanna-light" { | ||
const style: any; | ||
@@ -256,3 +469,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/atelier-seaside-dark' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/atelier-seaside-dark" { | ||
const style: any; | ||
@@ -262,3 +475,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/atelier-seaside-light' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/atelier-seaside-light" { | ||
const style: any; | ||
@@ -268,3 +481,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/atelier-sulphurpool-dark' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/atelier-sulphurpool-dark" { | ||
const style: any; | ||
@@ -274,3 +487,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/atelier-sulphurpool-light' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/atelier-sulphurpool-light" { | ||
const style: any; | ||
@@ -280,3 +493,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/atom-one-dark' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/atom-one-dark" { | ||
const style: any; | ||
@@ -286,3 +499,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/atom-one-light' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/atom-one-light" { | ||
const style: any; | ||
@@ -292,3 +505,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/brown-paper' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/brown-paper" { | ||
const style: any; | ||
@@ -298,3 +511,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/codepen-embed' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/codepen-embed" { | ||
const style: any; | ||
@@ -304,3 +517,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/color-brewer' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/color-brewer" { | ||
const style: any; | ||
@@ -310,4 +523,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/darcula' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/darcula" { | ||
const style: any; | ||
@@ -317,4 +529,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/dark' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/dark" { | ||
const style: any; | ||
@@ -324,3 +535,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/darkula' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/darkula" { | ||
const style: any; | ||
@@ -330,3 +541,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/default-style' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/default-style" { | ||
const style: any; | ||
@@ -336,3 +547,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/docco' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/docco" { | ||
const style: any; | ||
@@ -342,3 +553,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/dracula' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/dracula" { | ||
const style: any; | ||
@@ -348,3 +559,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/far' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/far" { | ||
const style: any; | ||
@@ -354,3 +565,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/foundation' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/foundation" { | ||
const style: any; | ||
@@ -360,3 +571,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/github-gist' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/github-gist" { | ||
const style: any; | ||
@@ -366,3 +577,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/github' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/github" { | ||
const style: any; | ||
@@ -372,3 +583,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/googlecode' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/googlecode" { | ||
const style: any; | ||
@@ -378,3 +589,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/grayscale' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/grayscale" { | ||
const style: any; | ||
@@ -384,3 +595,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/gruvbox-dark' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/gruvbox-dark" { | ||
const style: any; | ||
@@ -390,3 +601,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/gruvbox-light' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/gruvbox-light" { | ||
const style: any; | ||
@@ -396,3 +607,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/hopscotch' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/hopscotch" { | ||
const style: any; | ||
@@ -402,3 +613,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/hybrid' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/hybrid" { | ||
const style: any; | ||
@@ -408,3 +619,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/idea' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/idea" { | ||
const style: any; | ||
@@ -414,4 +625,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/ir-black' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/ir-black" { | ||
const style: any; | ||
@@ -421,4 +631,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/kimbie.dark' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/kimbie.dark" { | ||
const style: any; | ||
@@ -428,3 +637,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/kimbie.light' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/kimbie.light" { | ||
const style: any; | ||
@@ -434,3 +643,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/magula' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/magula" { | ||
const style: any; | ||
@@ -440,3 +649,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/mono-blue' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/mono-blue" { | ||
const style: any; | ||
@@ -446,3 +655,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/monokai-sublime' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/monokai-sublime" { | ||
const style: any; | ||
@@ -452,3 +661,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/monokai' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/monokai" { | ||
const style: any; | ||
@@ -458,3 +667,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/obsidian' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/obsidian" { | ||
const style: any; | ||
@@ -464,3 +673,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/ocean' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/ocean" { | ||
const style: any; | ||
@@ -470,3 +679,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/paraiso-dark' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/paraiso-dark" { | ||
const style: any; | ||
@@ -476,3 +685,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/paraiso-light' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/paraiso-light" { | ||
const style: any; | ||
@@ -482,3 +691,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/pojoaque' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/pojoaque" { | ||
const style: any; | ||
@@ -488,3 +697,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/purebasic' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/purebasic" { | ||
const style: any; | ||
@@ -494,3 +703,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/qtcreator_dark' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/qtcreator_dark" { | ||
const style: any; | ||
@@ -500,3 +709,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/qtcreator_light' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/qtcreator_light" { | ||
const style: any; | ||
@@ -506,3 +715,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/railscasts' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/railscasts" { | ||
const style: any; | ||
@@ -512,3 +721,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/rainbow' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/rainbow" { | ||
const style: any; | ||
@@ -518,3 +727,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/routeros' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/routeros" { | ||
const style: any; | ||
@@ -524,3 +733,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/school-book' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/school-book" { | ||
const style: any; | ||
@@ -530,3 +739,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/solarized-dark' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/solarized-dark" { | ||
const style: any; | ||
@@ -536,3 +745,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/solarized-light' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/solarized-light" { | ||
const style: any; | ||
@@ -542,3 +751,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/sunburst' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/sunburst" { | ||
const style: any; | ||
@@ -548,3 +757,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/tomorrow-night-blue' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/tomorrow-night-blue" { | ||
const style: any; | ||
@@ -554,3 +763,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/tomorrow-night-bright' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/tomorrow-night-bright" { | ||
const style: any; | ||
@@ -560,3 +769,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/tomorrow-night-eighties' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/tomorrow-night-eighties" { | ||
const style: any; | ||
@@ -566,3 +775,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/tomorrow-night' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/tomorrow-night" { | ||
const style: any; | ||
@@ -572,3 +781,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/tomorrow' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/tomorrow" { | ||
const style: any; | ||
@@ -578,3 +787,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/vs' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/vs" { | ||
const style: any; | ||
@@ -584,3 +793,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/vs2015' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/vs2015" { | ||
const style: any; | ||
@@ -590,3 +799,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/xcode' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/xcode" { | ||
const style: any; | ||
@@ -596,3 +805,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/xt256' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/xt256" { | ||
const style: any; | ||
@@ -602,3 +811,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/hljs/zenburn' { | ||
declare module "react-syntax-highlighter/dist/styles/hljs/zenburn" { | ||
const style: any; | ||
@@ -608,29 +817,75 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/prism' { | ||
export { default as atomDark } from 'react-syntax-highlighter/dist/styles/prism/atom-dark'; | ||
export { default as base16AteliersulphurpoolLight } from 'react-syntax-highlighter/dist/styles/prism/base16-ateliersulphurpool.light'; | ||
export { default as cb } from 'react-syntax-highlighter/dist/styles/prism/cb'; | ||
export { default as coy } from 'react-syntax-highlighter/dist/styles/prism/coy'; | ||
export { default as darcula } from 'react-syntax-highlighter/dist/styles/prism/darcula'; | ||
export { default as dark } from 'react-syntax-highlighter/dist/styles/prism/dark'; | ||
export { default as duotoneDark } from 'react-syntax-highlighter/dist/styles/prism/duotone-dark'; | ||
export { default as duotoneEarth } from 'react-syntax-highlighter/dist/styles/prism/duotone-earth'; | ||
export { default as duotoneForest } from 'react-syntax-highlighter/dist/styles/prism/duotone-forest'; | ||
export { default as duotoneLight } from 'react-syntax-highlighter/dist/styles/prism/duotone-light'; | ||
export { default as duotoneSea } from 'react-syntax-highlighter/dist/styles/prism/duotone-sea'; | ||
export { default as duotoneSpace } from 'react-syntax-highlighter/dist/styles/prism/duotone-space'; | ||
export { default as funky } from 'react-syntax-highlighter/dist/styles/prism/funky'; | ||
export { default as ghcolors } from 'react-syntax-highlighter/dist/styles/prism/ghcolors'; | ||
export { default as hopscotch } from 'react-syntax-highlighter/dist/styles/prism/hopscotch'; | ||
export { default as okaidia } from 'react-syntax-highlighter/dist/styles/prism/okaidia'; | ||
export { default as pojoaque } from 'react-syntax-highlighter/dist/styles/prism/pojoaque'; | ||
export { default as prism } from 'react-syntax-highlighter/dist/styles/prism/prism'; | ||
export { default as solarizedlight } from 'react-syntax-highlighter/dist/styles/prism/solarizedlight'; | ||
export { default as tomorrow } from 'react-syntax-highlighter/dist/styles/prism/tomorrow'; | ||
export { default as twilight } from 'react-syntax-highlighter/dist/styles/prism/twilight'; | ||
export { default as vs } from 'react-syntax-highlighter/dist/styles/prism/vs'; | ||
export { default as xonokai } from 'react-syntax-highlighter/dist/styles/prism/xonokai'; | ||
declare module "react-syntax-highlighter/dist/styles/prism" { | ||
export { | ||
default as atomDark | ||
} from "react-syntax-highlighter/dist/styles/prism/atom-dark"; | ||
export { | ||
default as base16AteliersulphurpoolLight | ||
} from "react-syntax-highlighter/dist/styles/prism/base16-ateliersulphurpool.light"; | ||
export { | ||
default as cb | ||
} from "react-syntax-highlighter/dist/styles/prism/cb"; | ||
export { | ||
default as coy | ||
} from "react-syntax-highlighter/dist/styles/prism/coy"; | ||
export { | ||
default as darcula | ||
} from "react-syntax-highlighter/dist/styles/prism/darcula"; | ||
export { | ||
default as dark | ||
} from "react-syntax-highlighter/dist/styles/prism/dark"; | ||
export { | ||
default as duotoneDark | ||
} from "react-syntax-highlighter/dist/styles/prism/duotone-dark"; | ||
export { | ||
default as duotoneEarth | ||
} from "react-syntax-highlighter/dist/styles/prism/duotone-earth"; | ||
export { | ||
default as duotoneForest | ||
} from "react-syntax-highlighter/dist/styles/prism/duotone-forest"; | ||
export { | ||
default as duotoneLight | ||
} from "react-syntax-highlighter/dist/styles/prism/duotone-light"; | ||
export { | ||
default as duotoneSea | ||
} from "react-syntax-highlighter/dist/styles/prism/duotone-sea"; | ||
export { | ||
default as duotoneSpace | ||
} from "react-syntax-highlighter/dist/styles/prism/duotone-space"; | ||
export { | ||
default as funky | ||
} from "react-syntax-highlighter/dist/styles/prism/funky"; | ||
export { | ||
default as ghcolors | ||
} from "react-syntax-highlighter/dist/styles/prism/ghcolors"; | ||
export { | ||
default as hopscotch | ||
} from "react-syntax-highlighter/dist/styles/prism/hopscotch"; | ||
export { | ||
default as okaidia | ||
} from "react-syntax-highlighter/dist/styles/prism/okaidia"; | ||
export { | ||
default as pojoaque | ||
} from "react-syntax-highlighter/dist/styles/prism/pojoaque"; | ||
export { | ||
default as prism | ||
} from "react-syntax-highlighter/dist/styles/prism/prism"; | ||
export { | ||
default as solarizedlight | ||
} from "react-syntax-highlighter/dist/styles/prism/solarizedlight"; | ||
export { | ||
default as tomorrow | ||
} from "react-syntax-highlighter/dist/styles/prism/tomorrow"; | ||
export { | ||
default as twilight | ||
} from "react-syntax-highlighter/dist/styles/prism/twilight"; | ||
export { | ||
default as vs | ||
} from "react-syntax-highlighter/dist/styles/prism/vs"; | ||
export { | ||
default as xonokai | ||
} from "react-syntax-highlighter/dist/styles/prism/xonokai"; | ||
} | ||
declare module 'react-syntax-highlighter/dist/styles/prism/atom-dark' { | ||
declare module "react-syntax-highlighter/dist/styles/prism/atom-dark" { | ||
const style: any; | ||
@@ -640,3 +895,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/prism/base16-ateliersulphurpool.light' { | ||
declare module "react-syntax-highlighter/dist/styles/prism/base16-ateliersulphurpool.light" { | ||
const style: any; | ||
@@ -646,3 +901,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/prism/cb' { | ||
declare module "react-syntax-highlighter/dist/styles/prism/cb" { | ||
const style: any; | ||
@@ -652,3 +907,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/prism/coy' { | ||
declare module "react-syntax-highlighter/dist/styles/prism/coy" { | ||
const style: any; | ||
@@ -658,3 +913,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/prism/darcula' { | ||
declare module "react-syntax-highlighter/dist/styles/prism/darcula" { | ||
const style: any; | ||
@@ -664,3 +919,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/prism/dark' { | ||
declare module "react-syntax-highlighter/dist/styles/prism/dark" { | ||
const style: any; | ||
@@ -670,3 +925,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/prism/duotone-dark' { | ||
declare module "react-syntax-highlighter/dist/styles/prism/duotone-dark" { | ||
const style: any; | ||
@@ -676,3 +931,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/prism/duotone-earth' { | ||
declare module "react-syntax-highlighter/dist/styles/prism/duotone-earth" { | ||
const style: any; | ||
@@ -682,3 +937,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/prism/duotone-forest' { | ||
declare module "react-syntax-highlighter/dist/styles/prism/duotone-forest" { | ||
const style: any; | ||
@@ -688,3 +943,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/prism/duotone-light' { | ||
declare module "react-syntax-highlighter/dist/styles/prism/duotone-light" { | ||
const style: any; | ||
@@ -694,3 +949,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/prism/duotone-sea' { | ||
declare module "react-syntax-highlighter/dist/styles/prism/duotone-sea" { | ||
const style: any; | ||
@@ -700,3 +955,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/prism/duotone-space' { | ||
declare module "react-syntax-highlighter/dist/styles/prism/duotone-space" { | ||
const style: any; | ||
@@ -706,3 +961,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/prism/funky' { | ||
declare module "react-syntax-highlighter/dist/styles/prism/funky" { | ||
const style: any; | ||
@@ -712,3 +967,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/prism/ghcolors' { | ||
declare module "react-syntax-highlighter/dist/styles/prism/ghcolors" { | ||
const style: any; | ||
@@ -718,3 +973,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/prism/hopscotch' { | ||
declare module "react-syntax-highlighter/dist/styles/prism/hopscotch" { | ||
const style: any; | ||
@@ -724,3 +979,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/prism/okaidia' { | ||
declare module "react-syntax-highlighter/dist/styles/prism/okaidia" { | ||
const style: any; | ||
@@ -730,3 +985,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/prism/pojoaque' { | ||
declare module "react-syntax-highlighter/dist/styles/prism/pojoaque" { | ||
const style: any; | ||
@@ -736,3 +991,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/prism/prism' { | ||
declare module "react-syntax-highlighter/dist/styles/prism/prism" { | ||
const style: any; | ||
@@ -742,3 +997,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/prism/solarizedlight' { | ||
declare module "react-syntax-highlighter/dist/styles/prism/solarizedlight" { | ||
const style: any; | ||
@@ -748,3 +1003,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/prism/tomorrow' { | ||
declare module "react-syntax-highlighter/dist/styles/prism/tomorrow" { | ||
const style: any; | ||
@@ -754,3 +1009,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/prism/twilight' { | ||
declare module "react-syntax-highlighter/dist/styles/prism/twilight" { | ||
const style: any; | ||
@@ -760,3 +1015,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/prism/vs' { | ||
declare module "react-syntax-highlighter/dist/styles/prism/vs" { | ||
const style: any; | ||
@@ -766,3 +1021,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/dist/styles/prism/xonokai' { | ||
declare module "react-syntax-highlighter/dist/styles/prism/xonokai" { | ||
const style: any; | ||
@@ -772,3 +1027,3 @@ export default style; | ||
declare module 'react-syntax-highlighter/languages/prism/abap' { | ||
declare module "react-syntax-highlighter/languages/prism/abap" { | ||
const language: any; | ||
@@ -778,3 +1033,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/actionscript' { | ||
declare module "react-syntax-highlighter/languages/prism/actionscript" { | ||
const language: any; | ||
@@ -784,3 +1039,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/ada' { | ||
declare module "react-syntax-highlighter/languages/prism/ada" { | ||
const language: any; | ||
@@ -790,3 +1045,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/apacheconf' { | ||
declare module "react-syntax-highlighter/languages/prism/apacheconf" { | ||
const language: any; | ||
@@ -796,3 +1051,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/apl' { | ||
declare module "react-syntax-highlighter/languages/prism/apl" { | ||
const language: any; | ||
@@ -802,3 +1057,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/applescript' { | ||
declare module "react-syntax-highlighter/languages/prism/applescript" { | ||
const language: any; | ||
@@ -808,3 +1063,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/arduino' { | ||
declare module "react-syntax-highlighter/languages/prism/arduino" { | ||
const language: any; | ||
@@ -814,3 +1069,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/arff' { | ||
declare module "react-syntax-highlighter/languages/prism/arff" { | ||
const language: any; | ||
@@ -820,3 +1075,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/asciidoc' { | ||
declare module "react-syntax-highlighter/languages/prism/asciidoc" { | ||
const language: any; | ||
@@ -826,3 +1081,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/asm6502' { | ||
declare module "react-syntax-highlighter/languages/prism/asm6502" { | ||
const language: any; | ||
@@ -832,3 +1087,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/aspnet' { | ||
declare module "react-syntax-highlighter/languages/prism/aspnet" { | ||
const language: any; | ||
@@ -838,3 +1093,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/autohotkey' { | ||
declare module "react-syntax-highlighter/languages/prism/autohotkey" { | ||
const language: any; | ||
@@ -844,3 +1099,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/autoit' { | ||
declare module "react-syntax-highlighter/languages/prism/autoit" { | ||
const language: any; | ||
@@ -850,3 +1105,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/bash' { | ||
declare module "react-syntax-highlighter/languages/prism/bash" { | ||
const language: any; | ||
@@ -856,3 +1111,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/basic' { | ||
declare module "react-syntax-highlighter/languages/prism/basic" { | ||
const language: any; | ||
@@ -862,3 +1117,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/batch' { | ||
declare module "react-syntax-highlighter/languages/prism/batch" { | ||
const language: any; | ||
@@ -868,3 +1123,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/bison' { | ||
declare module "react-syntax-highlighter/languages/prism/bison" { | ||
const language: any; | ||
@@ -874,3 +1129,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/brainfuck' { | ||
declare module "react-syntax-highlighter/languages/prism/brainfuck" { | ||
const language: any; | ||
@@ -880,3 +1135,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/bro' { | ||
declare module "react-syntax-highlighter/languages/prism/bro" { | ||
const language: any; | ||
@@ -886,3 +1141,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/c' { | ||
declare module "react-syntax-highlighter/languages/prism/c" { | ||
const language: any; | ||
@@ -892,3 +1147,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/clike' { | ||
declare module "react-syntax-highlighter/languages/prism/clike" { | ||
const language: any; | ||
@@ -898,3 +1153,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/clojure' { | ||
declare module "react-syntax-highlighter/languages/prism/clojure" { | ||
const language: any; | ||
@@ -904,3 +1159,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/coffeescript' { | ||
declare module "react-syntax-highlighter/languages/prism/coffeescript" { | ||
const language: any; | ||
@@ -910,3 +1165,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/cpp' { | ||
declare module "react-syntax-highlighter/languages/prism/cpp" { | ||
const language: any; | ||
@@ -916,3 +1171,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/crystal' { | ||
declare module "react-syntax-highlighter/languages/prism/crystal" { | ||
const language: any; | ||
@@ -922,3 +1177,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/csharp' { | ||
declare module "react-syntax-highlighter/languages/prism/csharp" { | ||
const language: any; | ||
@@ -928,3 +1183,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/csp' { | ||
declare module "react-syntax-highlighter/languages/prism/csp" { | ||
const language: any; | ||
@@ -934,3 +1189,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/cssExtras' { | ||
declare module "react-syntax-highlighter/languages/prism/cssExtras" { | ||
const language: any; | ||
@@ -940,3 +1195,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/css' { | ||
declare module "react-syntax-highlighter/languages/prism/css" { | ||
const language: any; | ||
@@ -946,3 +1201,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/d' { | ||
declare module "react-syntax-highlighter/languages/prism/d" { | ||
const language: any; | ||
@@ -952,3 +1207,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/dart' { | ||
declare module "react-syntax-highlighter/languages/prism/dart" { | ||
const language: any; | ||
@@ -958,3 +1213,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/diff' { | ||
declare module "react-syntax-highlighter/languages/prism/diff" { | ||
const language: any; | ||
@@ -964,3 +1219,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/django' { | ||
declare module "react-syntax-highlighter/languages/prism/django" { | ||
const language: any; | ||
@@ -970,3 +1225,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/docker' { | ||
declare module "react-syntax-highlighter/languages/prism/docker" { | ||
const language: any; | ||
@@ -976,3 +1231,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/eiffel' { | ||
declare module "react-syntax-highlighter/languages/prism/eiffel" { | ||
const language: any; | ||
@@ -982,3 +1237,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/elixir' { | ||
declare module "react-syntax-highlighter/languages/prism/elixir" { | ||
const language: any; | ||
@@ -988,3 +1243,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/elm' { | ||
declare module "react-syntax-highlighter/languages/prism/elm" { | ||
const language: any; | ||
@@ -994,3 +1249,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/erb' { | ||
declare module "react-syntax-highlighter/languages/prism/erb" { | ||
const language: any; | ||
@@ -1000,3 +1255,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/erlang' { | ||
declare module "react-syntax-highlighter/languages/prism/erlang" { | ||
const language: any; | ||
@@ -1006,3 +1261,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/flow' { | ||
declare module "react-syntax-highlighter/languages/prism/flow" { | ||
const language: any; | ||
@@ -1012,3 +1267,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/fortran' { | ||
declare module "react-syntax-highlighter/languages/prism/fortran" { | ||
const language: any; | ||
@@ -1018,3 +1273,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/fsharp' { | ||
declare module "react-syntax-highlighter/languages/prism/fsharp" { | ||
const language: any; | ||
@@ -1024,3 +1279,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/gedcom' { | ||
declare module "react-syntax-highlighter/languages/prism/gedcom" { | ||
const language: any; | ||
@@ -1030,3 +1285,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/gherkin' { | ||
declare module "react-syntax-highlighter/languages/prism/gherkin" { | ||
const language: any; | ||
@@ -1036,3 +1291,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/git' { | ||
declare module "react-syntax-highlighter/languages/prism/git" { | ||
const language: any; | ||
@@ -1042,3 +1297,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/glsl' { | ||
declare module "react-syntax-highlighter/languages/prism/glsl" { | ||
const language: any; | ||
@@ -1048,3 +1303,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/go' { | ||
declare module "react-syntax-highlighter/languages/prism/go" { | ||
const language: any; | ||
@@ -1054,3 +1309,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/graphql' { | ||
declare module "react-syntax-highlighter/languages/prism/graphql" { | ||
const language: any; | ||
@@ -1060,3 +1315,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/groovy' { | ||
declare module "react-syntax-highlighter/languages/prism/groovy" { | ||
const language: any; | ||
@@ -1066,3 +1321,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/haml' { | ||
declare module "react-syntax-highlighter/languages/prism/haml" { | ||
const language: any; | ||
@@ -1072,3 +1327,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/handlebars' { | ||
declare module "react-syntax-highlighter/languages/prism/handlebars" { | ||
const language: any; | ||
@@ -1078,3 +1333,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/haskell' { | ||
declare module "react-syntax-highlighter/languages/prism/haskell" { | ||
const language: any; | ||
@@ -1084,3 +1339,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/haxe' { | ||
declare module "react-syntax-highlighter/languages/prism/haxe" { | ||
const language: any; | ||
@@ -1090,3 +1345,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/hpkp' { | ||
declare module "react-syntax-highlighter/languages/prism/hpkp" { | ||
const language: any; | ||
@@ -1096,3 +1351,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/hsts' { | ||
declare module "react-syntax-highlighter/languages/prism/hsts" { | ||
const language: any; | ||
@@ -1102,3 +1357,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/http' { | ||
declare module "react-syntax-highlighter/languages/prism/http" { | ||
const language: any; | ||
@@ -1108,3 +1363,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/ichigojam' { | ||
declare module "react-syntax-highlighter/languages/prism/ichigojam" { | ||
const language: any; | ||
@@ -1114,3 +1369,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/icon' { | ||
declare module "react-syntax-highlighter/languages/prism/icon" { | ||
const language: any; | ||
@@ -1120,3 +1375,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/inform7' { | ||
declare module "react-syntax-highlighter/languages/prism/inform7" { | ||
const language: any; | ||
@@ -1126,3 +1381,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/ini' { | ||
declare module "react-syntax-highlighter/languages/prism/ini" { | ||
const language: any; | ||
@@ -1132,3 +1387,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/io' { | ||
declare module "react-syntax-highlighter/languages/prism/io" { | ||
const language: any; | ||
@@ -1138,3 +1393,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/j' { | ||
declare module "react-syntax-highlighter/languages/prism/j" { | ||
const language: any; | ||
@@ -1144,3 +1399,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/java' { | ||
declare module "react-syntax-highlighter/languages/prism/java" { | ||
const language: any; | ||
@@ -1150,3 +1405,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/javascript' { | ||
declare module "react-syntax-highlighter/languages/prism/javascript" { | ||
const language: any; | ||
@@ -1156,3 +1411,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/jolie' { | ||
declare module "react-syntax-highlighter/languages/prism/jolie" { | ||
const language: any; | ||
@@ -1162,3 +1417,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/json' { | ||
declare module "react-syntax-highlighter/languages/prism/json" { | ||
const language: any; | ||
@@ -1168,3 +1423,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/jsx' { | ||
declare module "react-syntax-highlighter/languages/prism/jsx" { | ||
const language: any; | ||
@@ -1174,3 +1429,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/julia' { | ||
declare module "react-syntax-highlighter/languages/prism/julia" { | ||
const language: any; | ||
@@ -1180,3 +1435,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/keyman' { | ||
declare module "react-syntax-highlighter/languages/prism/keyman" { | ||
const language: any; | ||
@@ -1186,3 +1441,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/kotlin' { | ||
declare module "react-syntax-highlighter/languages/prism/kotlin" { | ||
const language: any; | ||
@@ -1192,3 +1447,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/latex' { | ||
declare module "react-syntax-highlighter/languages/prism/latex" { | ||
const language: any; | ||
@@ -1198,3 +1453,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/less' { | ||
declare module "react-syntax-highlighter/languages/prism/less" { | ||
const language: any; | ||
@@ -1204,3 +1459,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/liquid' { | ||
declare module "react-syntax-highlighter/languages/prism/liquid" { | ||
const language: any; | ||
@@ -1210,3 +1465,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/lisp' { | ||
declare module "react-syntax-highlighter/languages/prism/lisp" { | ||
const language: any; | ||
@@ -1216,3 +1471,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/livescript' { | ||
declare module "react-syntax-highlighter/languages/prism/livescript" { | ||
const language: any; | ||
@@ -1222,3 +1477,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/lolcode' { | ||
declare module "react-syntax-highlighter/languages/prism/lolcode" { | ||
const language: any; | ||
@@ -1228,3 +1483,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/lua' { | ||
declare module "react-syntax-highlighter/languages/prism/lua" { | ||
const language: any; | ||
@@ -1234,3 +1489,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/makefile' { | ||
declare module "react-syntax-highlighter/languages/prism/makefile" { | ||
const language: any; | ||
@@ -1240,3 +1495,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/markdown' { | ||
declare module "react-syntax-highlighter/languages/prism/markdown" { | ||
const language: any; | ||
@@ -1246,3 +1501,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/markupTemplating' { | ||
declare module "react-syntax-highlighter/languages/prism/markupTemplating" { | ||
const language: any; | ||
@@ -1252,3 +1507,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/markup' { | ||
declare module "react-syntax-highlighter/languages/prism/markup" { | ||
const language: any; | ||
@@ -1258,3 +1513,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/matlab' { | ||
declare module "react-syntax-highlighter/languages/prism/matlab" { | ||
const language: any; | ||
@@ -1264,3 +1519,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/mel' { | ||
declare module "react-syntax-highlighter/languages/prism/mel" { | ||
const language: any; | ||
@@ -1270,3 +1525,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/mizar' { | ||
declare module "react-syntax-highlighter/languages/prism/mizar" { | ||
const language: any; | ||
@@ -1276,3 +1531,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/monkey' { | ||
declare module "react-syntax-highlighter/languages/prism/monkey" { | ||
const language: any; | ||
@@ -1282,3 +1537,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/n4js' { | ||
declare module "react-syntax-highlighter/languages/prism/n4js" { | ||
const language: any; | ||
@@ -1288,3 +1543,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/nasm' { | ||
declare module "react-syntax-highlighter/languages/prism/nasm" { | ||
const language: any; | ||
@@ -1294,3 +1549,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/nginx' { | ||
declare module "react-syntax-highlighter/languages/prism/nginx" { | ||
const language: any; | ||
@@ -1300,3 +1555,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/nim' { | ||
declare module "react-syntax-highlighter/languages/prism/nim" { | ||
const language: any; | ||
@@ -1306,3 +1561,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/nix' { | ||
declare module "react-syntax-highlighter/languages/prism/nix" { | ||
const language: any; | ||
@@ -1312,3 +1567,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/nsis' { | ||
declare module "react-syntax-highlighter/languages/prism/nsis" { | ||
const language: any; | ||
@@ -1318,3 +1573,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/objectivec' { | ||
declare module "react-syntax-highlighter/languages/prism/objectivec" { | ||
const language: any; | ||
@@ -1324,3 +1579,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/ocaml' { | ||
declare module "react-syntax-highlighter/languages/prism/ocaml" { | ||
const language: any; | ||
@@ -1330,3 +1585,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/opencl' { | ||
declare module "react-syntax-highlighter/languages/prism/opencl" { | ||
const language: any; | ||
@@ -1336,3 +1591,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/oz' { | ||
declare module "react-syntax-highlighter/languages/prism/oz" { | ||
const language: any; | ||
@@ -1342,3 +1597,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/parigp' { | ||
declare module "react-syntax-highlighter/languages/prism/parigp" { | ||
const language: any; | ||
@@ -1348,3 +1603,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/parser' { | ||
declare module "react-syntax-highlighter/languages/prism/parser" { | ||
const language: any; | ||
@@ -1354,3 +1609,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/pascal' { | ||
declare module "react-syntax-highlighter/languages/prism/pascal" { | ||
const language: any; | ||
@@ -1360,3 +1615,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/perl' { | ||
declare module "react-syntax-highlighter/languages/prism/perl" { | ||
const language: any; | ||
@@ -1366,3 +1621,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/phpExtras' { | ||
declare module "react-syntax-highlighter/languages/prism/phpExtras" { | ||
const language: any; | ||
@@ -1372,3 +1627,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/php' { | ||
declare module "react-syntax-highlighter/languages/prism/php" { | ||
const language: any; | ||
@@ -1378,3 +1633,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/plsql' { | ||
declare module "react-syntax-highlighter/languages/prism/plsql" { | ||
const language: any; | ||
@@ -1384,3 +1639,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/powershell' { | ||
declare module "react-syntax-highlighter/languages/prism/powershell" { | ||
const language: any; | ||
@@ -1390,3 +1645,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/processing' { | ||
declare module "react-syntax-highlighter/languages/prism/processing" { | ||
const language: any; | ||
@@ -1396,3 +1651,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/prolog' { | ||
declare module "react-syntax-highlighter/languages/prism/prolog" { | ||
const language: any; | ||
@@ -1402,3 +1657,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/properties' { | ||
declare module "react-syntax-highlighter/languages/prism/properties" { | ||
const language: any; | ||
@@ -1408,3 +1663,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/protobuf' { | ||
declare module "react-syntax-highlighter/languages/prism/protobuf" { | ||
const language: any; | ||
@@ -1414,3 +1669,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/pug' { | ||
declare module "react-syntax-highlighter/languages/prism/pug" { | ||
const language: any; | ||
@@ -1420,3 +1675,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/puppet' { | ||
declare module "react-syntax-highlighter/languages/prism/puppet" { | ||
const language: any; | ||
@@ -1426,3 +1681,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/pure' { | ||
declare module "react-syntax-highlighter/languages/prism/pure" { | ||
const language: any; | ||
@@ -1432,3 +1687,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/python' { | ||
declare module "react-syntax-highlighter/languages/prism/python" { | ||
const language: any; | ||
@@ -1438,3 +1693,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/q' { | ||
declare module "react-syntax-highlighter/languages/prism/q" { | ||
const language: any; | ||
@@ -1444,3 +1699,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/qore' { | ||
declare module "react-syntax-highlighter/languages/prism/qore" { | ||
const language: any; | ||
@@ -1450,3 +1705,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/r' { | ||
declare module "react-syntax-highlighter/languages/prism/r" { | ||
const language: any; | ||
@@ -1456,3 +1711,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/reason' { | ||
declare module "react-syntax-highlighter/languages/prism/reason" { | ||
const language: any; | ||
@@ -1462,3 +1717,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/renpy' { | ||
declare module "react-syntax-highlighter/languages/prism/renpy" { | ||
const language: any; | ||
@@ -1468,3 +1723,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/rest' { | ||
declare module "react-syntax-highlighter/languages/prism/rest" { | ||
const language: any; | ||
@@ -1474,3 +1729,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/rip' { | ||
declare module "react-syntax-highlighter/languages/prism/rip" { | ||
const language: any; | ||
@@ -1480,3 +1735,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/roboconf' { | ||
declare module "react-syntax-highlighter/languages/prism/roboconf" { | ||
const language: any; | ||
@@ -1486,3 +1741,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/ruby' { | ||
declare module "react-syntax-highlighter/languages/prism/ruby" { | ||
const language: any; | ||
@@ -1492,3 +1747,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/rust' { | ||
declare module "react-syntax-highlighter/languages/prism/rust" { | ||
const language: any; | ||
@@ -1498,3 +1753,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/sas' { | ||
declare module "react-syntax-highlighter/languages/prism/sas" { | ||
const language: any; | ||
@@ -1504,3 +1759,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/sass' { | ||
declare module "react-syntax-highlighter/languages/prism/sass" { | ||
const language: any; | ||
@@ -1510,3 +1765,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/scala' { | ||
declare module "react-syntax-highlighter/languages/prism/scala" { | ||
const language: any; | ||
@@ -1516,3 +1771,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/scheme' { | ||
declare module "react-syntax-highlighter/languages/prism/scheme" { | ||
const language: any; | ||
@@ -1522,3 +1777,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/scss' { | ||
declare module "react-syntax-highlighter/languages/prism/scss" { | ||
const language: any; | ||
@@ -1528,3 +1783,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/smalltalk' { | ||
declare module "react-syntax-highlighter/languages/prism/smalltalk" { | ||
const language: any; | ||
@@ -1534,3 +1789,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/smarty' { | ||
declare module "react-syntax-highlighter/languages/prism/smarty" { | ||
const language: any; | ||
@@ -1540,3 +1795,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/soy' { | ||
declare module "react-syntax-highlighter/languages/prism/soy" { | ||
const language: any; | ||
@@ -1546,3 +1801,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/sql' { | ||
declare module "react-syntax-highlighter/languages/prism/sql" { | ||
const language: any; | ||
@@ -1552,3 +1807,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/stylus' { | ||
declare module "react-syntax-highlighter/languages/prism/stylus" { | ||
const language: any; | ||
@@ -1558,3 +1813,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/swift' { | ||
declare module "react-syntax-highlighter/languages/prism/swift" { | ||
const language: any; | ||
@@ -1564,3 +1819,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/tcl' { | ||
declare module "react-syntax-highlighter/languages/prism/tcl" { | ||
const language: any; | ||
@@ -1570,3 +1825,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/textile' { | ||
declare module "react-syntax-highlighter/languages/prism/textile" { | ||
const language: any; | ||
@@ -1576,3 +1831,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/tsx' { | ||
declare module "react-syntax-highlighter/languages/prism/tsx" { | ||
const language: any; | ||
@@ -1582,3 +1837,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/twig' { | ||
declare module "react-syntax-highlighter/languages/prism/twig" { | ||
const language: any; | ||
@@ -1588,3 +1843,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/typescript' { | ||
declare module "react-syntax-highlighter/languages/prism/typescript" { | ||
const language: any; | ||
@@ -1594,3 +1849,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/vbnet' { | ||
declare module "react-syntax-highlighter/languages/prism/vbnet" { | ||
const language: any; | ||
@@ -1600,3 +1855,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/velocity' { | ||
declare module "react-syntax-highlighter/languages/prism/velocity" { | ||
const language: any; | ||
@@ -1606,3 +1861,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/verilog' { | ||
declare module "react-syntax-highlighter/languages/prism/verilog" { | ||
const language: any; | ||
@@ -1612,3 +1867,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/vhdl' { | ||
declare module "react-syntax-highlighter/languages/prism/vhdl" { | ||
const language: any; | ||
@@ -1618,3 +1873,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/vim' { | ||
declare module "react-syntax-highlighter/languages/prism/vim" { | ||
const language: any; | ||
@@ -1624,3 +1879,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/visualBasic' { | ||
declare module "react-syntax-highlighter/languages/prism/visualBasic" { | ||
const language: any; | ||
@@ -1630,3 +1885,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/wasm' { | ||
declare module "react-syntax-highlighter/languages/prism/wasm" { | ||
const language: any; | ||
@@ -1636,3 +1891,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/wiki' { | ||
declare module "react-syntax-highlighter/languages/prism/wiki" { | ||
const language: any; | ||
@@ -1642,3 +1897,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/xeora' { | ||
declare module "react-syntax-highlighter/languages/prism/xeora" { | ||
const language: any; | ||
@@ -1648,3 +1903,3 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/xojo' { | ||
declare module "react-syntax-highlighter/languages/prism/xojo" { | ||
const language: any; | ||
@@ -1654,5 +1909,5 @@ export default language; | ||
declare module 'react-syntax-highlighter/languages/prism/yaml' { | ||
declare module "react-syntax-highlighter/languages/prism/yaml" { | ||
const language: any; | ||
export default language; | ||
} |
{ | ||
"name": "@types/react-syntax-highlighter", | ||
"version": "10.1.0", | ||
"version": "10.2.0", | ||
"description": "TypeScript definitions for react-syntax-highlighter", | ||
@@ -16,2 +16,7 @@ "license": "MIT", | ||
"githubUsername": "ajgamble-milner" | ||
}, | ||
{ | ||
"name": "Guo Yunhe", | ||
"url": "https://github.com/guoyunhe", | ||
"githubUsername": "guoyunhe" | ||
} | ||
@@ -23,3 +28,4 @@ ], | ||
"type": "git", | ||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git" | ||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", | ||
"directory": "types/react-syntax-highlighter" | ||
}, | ||
@@ -30,4 +36,4 @@ "scripts": {}, | ||
}, | ||
"typesPublisherContentHash": "b9ed715dcb6a1e82ef460540449d6df54ba9309a78f3a8529d0a876788aaca66", | ||
"typesPublisherContentHash": "1ee161272d1d490cb04a1cc0e1529a0f999859ae9884935e6349c5dac41a959c", | ||
"typeScriptVersion": "2.8" | ||
} |
@@ -5,3 +5,3 @@ # Installation | ||
# Summary | ||
This package contains type definitions for react-syntax-highlighter (https://github.com/conorhastings/react-syntax-highlighter). | ||
This package contains type definitions for react-syntax-highlighter ( https://github.com/conorhastings/react-syntax-highlighter ). | ||
@@ -12,3 +12,3 @@ # Details | ||
Additional Details | ||
* Last updated: Thu, 13 Dec 2018 07:56:05 GMT | ||
* Last updated: Mon, 20 May 2019 21:26:05 GMT | ||
* Dependencies: @types/react | ||
@@ -18,2 +18,2 @@ * Global values: none | ||
# Credits | ||
These definitions were written by Ivo Stratev <https://github.com/NoHomey>, Aimee Gamble-Milner <https://github.com/ajgamble-milner>. | ||
These definitions were written by Ivo Stratev <https://github.com/NoHomey>, Aimee Gamble-Milner <https://github.com/ajgamble-milner>, Guo Yunhe <https://github.com/guoyunhe>. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
48802
1399