1 | type lineNumberStyleFunction = (lineNumber: number) => React.CSSProperties;
|
2 | type lineTagPropsFunction = (lineNumber: number) => React.HTMLProps<HTMLElement>;
|
3 | interface rendererNode {
|
4 | type: "element" | "text";
|
5 | value?: string | number | undefined;
|
6 | tagName?: keyof React.JSX.IntrinsicElements | React.ComponentType<any> | undefined;
|
7 | properties?: { className: any[]; [key: string]: any };
|
8 | children?: rendererNode[];
|
9 | }
|
10 | interface rendererProps {
|
11 | rows: rendererNode[];
|
12 | stylesheet: { [key: string]: React.CSSProperties };
|
13 | useInlineStyles: boolean;
|
14 | }
|
15 |
|
16 | declare module "react-syntax-highlighter" {
|
17 | export interface SyntaxHighlighterProps {
|
18 | language?: string | undefined;
|
19 | style?: { [key: string]: React.CSSProperties } | undefined;
|
20 | children: string | string[];
|
21 | customStyle?: React.CSSProperties | undefined;
|
22 | codeTagProps?: React.HTMLProps<HTMLElement> | undefined;
|
23 | useInlineStyles?: boolean | undefined;
|
24 | showLineNumbers?: boolean | undefined;
|
25 | showInlineLineNumbers?: boolean | undefined;
|
26 | startingLineNumber?: number | undefined;
|
27 | lineNumberContainerStyle?: React.CSSProperties | undefined;
|
28 | lineNumberStyle?: React.CSSProperties | lineNumberStyleFunction | undefined;
|
29 | wrapLines?: boolean | undefined;
|
30 | wrapLongLines?: boolean | undefined;
|
31 | lineProps?: lineTagPropsFunction | React.HTMLProps<HTMLElement> | undefined;
|
32 | renderer?: (props: rendererProps) => React.ReactNode;
|
33 | PreTag?: keyof React.JSX.IntrinsicElements | React.ComponentType<any> | undefined;
|
34 | CodeTag?: keyof React.JSX.IntrinsicElements | React.ComponentType<any> | undefined;
|
35 | [spread: string]: any;
|
36 | }
|
37 |
|
38 | export interface createElementProps {
|
39 | node: rendererNode;
|
40 | stylesheet: { [key: string]: React.CSSProperties };
|
41 | style?: React.CSSProperties;
|
42 | useInlineStyles: boolean;
|
43 | key: React.Key;
|
44 | }
|
45 |
|
46 | export { default } from "react-syntax-highlighter/dist/esm/default-highlight";
|
47 | export { default as LightAsync } from "react-syntax-highlighter/dist/esm/light-async";
|
48 | export { default as Light } from "react-syntax-highlighter/dist/esm/light";
|
49 |
|
50 | export { default as PrismAsyncLight } from "react-syntax-highlighter/dist/esm/prism-async-light";
|
51 | export { default as PrismAsync } from "react-syntax-highlighter/dist/esm/prism-async";
|
52 | export { default as PrismLight } from "react-syntax-highlighter/dist/esm/prism-light";
|
53 | export { default as Prism } from "react-syntax-highlighter/dist/esm/prism";
|
54 |
|
55 | export { default as createElement } from "react-syntax-highlighter/dist/esm/create-element";
|
56 | }
|
57 |
|
58 |
|
59 | declare module "react-syntax-highlighter/dist/esm/default-highlight" {
|
60 | import * as React from "react";
|
61 | import { SyntaxHighlighterProps } from "react-syntax-highlighter";
|
62 | export default class SyntaxHighlighter extends React.Component<SyntaxHighlighterProps> {
|
63 | static supportedLanguages: string[];
|
64 | }
|
65 | }
|
66 |
|
67 | declare module "react-syntax-highlighter/dist/esm/light-async" {
|
68 | import * as React from "react";
|
69 | import { SyntaxHighlighterProps } from "react-syntax-highlighter";
|
70 | export default class SyntaxHighlighter extends React.Component<SyntaxHighlighterProps> {
|
71 | static registerLanguage(name: string, func: any): void;
|
72 | }
|
73 | }
|
74 |
|
75 | declare module "react-syntax-highlighter/dist/esm/light" {
|
76 | import * as React from "react";
|
77 | import { SyntaxHighlighterProps } from "react-syntax-highlighter";
|
78 | export default class SyntaxHighlighter extends React.Component<SyntaxHighlighterProps> {
|
79 | static registerLanguage(name: string, func: any): void;
|
80 | }
|
81 | }
|
82 |
|
83 | declare module "react-syntax-highlighter/dist/esm/prism-async-light" {
|
84 | import * as React from "react";
|
85 | import { SyntaxHighlighterProps } from "react-syntax-highlighter";
|
86 | export default class SyntaxHighlighter extends React.Component<SyntaxHighlighterProps> {
|
87 | static registerLanguage(name: string, func: any): void;
|
88 | }
|
89 | }
|
90 |
|
91 | declare module "react-syntax-highlighter/dist/esm/prism-async" {
|
92 | import * as React from "react";
|
93 | import { SyntaxHighlighterProps } from "react-syntax-highlighter";
|
94 | export default class SyntaxHighlighter extends React.Component<SyntaxHighlighterProps> {}
|
95 | }
|
96 |
|
97 | declare module "react-syntax-highlighter/dist/esm/prism-light" {
|
98 | import * as React from "react";
|
99 | import { SyntaxHighlighterProps } from "react-syntax-highlighter";
|
100 | export default class SyntaxHighlighter extends React.Component<SyntaxHighlighterProps> {
|
101 | static registerLanguage(name: string, func: any): void;
|
102 | static alias(name: string, alias: string | string[]): void;
|
103 | static alias(aliases: Record<string, string | string[]>): void;
|
104 | }
|
105 | }
|
106 |
|
107 | declare module "react-syntax-highlighter/dist/esm/prism" {
|
108 | import * as React from "react";
|
109 | import { SyntaxHighlighterProps } from "react-syntax-highlighter";
|
110 | export default class SyntaxHighlighter extends React.Component<SyntaxHighlighterProps> {
|
111 | static supportedLanguages: string[];
|
112 | }
|
113 | }
|
114 |
|
115 | declare module "react-syntax-highlighter/dist/esm/create-element" {
|
116 | import * as React from "react";
|
117 | import { createElementProps } from "react-syntax-highlighter";
|
118 | function createElement(props: createElementProps): React.ReactNode;
|
119 | export default createElement;
|
120 | }
|
121 |
|
122 | declare module "react-syntax-highlighter/dist/esm/styles/hljs" {
|
123 | export { default as a11yDark } from "react-syntax-highlighter/dist/esm/styles/hljs/a11y-dark";
|
124 | export { default as a11yLight } from "react-syntax-highlighter/dist/esm/styles/hljs/a11y-light";
|
125 | export { default as agate } from "react-syntax-highlighter/dist/esm/styles/hljs/agate";
|
126 | export { default as anOldHope } from "react-syntax-highlighter/dist/esm/styles/hljs/an-old-hope";
|
127 | export { default as androidstudio } from "react-syntax-highlighter/dist/esm/styles/hljs/androidstudio";
|
128 | export { default as arduinoLight } from "react-syntax-highlighter/dist/esm/styles/hljs/arduino-light";
|
129 | export { default as arta } from "react-syntax-highlighter/dist/esm/styles/hljs/arta";
|
130 | export { default as ascetic } from "react-syntax-highlighter/dist/esm/styles/hljs/ascetic";
|
131 | export { default as atelierCaveDark } from "react-syntax-highlighter/dist/esm/styles/hljs/atelier-cave-dark";
|
132 | export { default as atelierCaveLight } from "react-syntax-highlighter/dist/esm/styles/hljs/atelier-cave-light";
|
133 | export { default as atelierDuneDark } from "react-syntax-highlighter/dist/esm/styles/hljs/atelier-dune-dark";
|
134 | export { default as atelierDuneLight } from "react-syntax-highlighter/dist/esm/styles/hljs/atelier-dune-light";
|
135 | export { default as atelierEstuaryDark } from "react-syntax-highlighter/dist/esm/styles/hljs/atelier-estuary-dark";
|
136 | export { default as atelierEstuaryLight } from "react-syntax-highlighter/dist/esm/styles/hljs/atelier-estuary-light";
|
137 | export { default as atelierForestDark } from "react-syntax-highlighter/dist/esm/styles/hljs/atelier-forest-dark";
|
138 | export { default as atelierForestLight } from "react-syntax-highlighter/dist/esm/styles/hljs/atelier-forest-light";
|
139 | export { default as atelierHeathDark } from "react-syntax-highlighter/dist/esm/styles/hljs/atelier-heath-dark";
|
140 | export { default as atelierHeathLight } from "react-syntax-highlighter/dist/esm/styles/hljs/atelier-heath-light";
|
141 | export { default as atelierLakesideDark } from "react-syntax-highlighter/dist/esm/styles/hljs/atelier-lakeside-dark";
|
142 | export { default as atelierLakesideLight } from "react-syntax-highlighter/dist/esm/styles/hljs/atelier-lakeside-light";
|
143 | export { default as atelierPlateauDark } from "react-syntax-highlighter/dist/esm/styles/hljs/atelier-plateau-dark";
|
144 | export { default as atelierPlateauLight } from "react-syntax-highlighter/dist/esm/styles/hljs/atelier-plateau-light";
|
145 | export { default as atelierSavannaDark } from "react-syntax-highlighter/dist/esm/styles/hljs/atelier-savanna-dark";
|
146 | export { default as atelierSavannaLight } from "react-syntax-highlighter/dist/esm/styles/hljs/atelier-savanna-light";
|
147 | export { default as atelierSeasideDark } from "react-syntax-highlighter/dist/esm/styles/hljs/atelier-seaside-dark";
|
148 | export { default as atelierSeasideLight } from "react-syntax-highlighter/dist/esm/styles/hljs/atelier-seaside-light";
|
149 | export { default as atelierSulphurpoolDark } from "react-syntax-highlighter/dist/esm/styles/hljs/atelier-sulphurpool-dark";
|
150 | export { default as atelierSulphurpoolLight } from "react-syntax-highlighter/dist/esm/styles/hljs/atelier-sulphurpool-light";
|
151 | export { default as atomOneDarkReasonable } from "react-syntax-highlighter/dist/esm/styles/hljs/atom-one-dark-reasonable";
|
152 | export { default as atomOneDark } from "react-syntax-highlighter/dist/esm/styles/hljs/atom-one-dark";
|
153 | export { default as atomOneLight } from "react-syntax-highlighter/dist/esm/styles/hljs/atom-one-light";
|
154 | export { default as brownPaper } from "react-syntax-highlighter/dist/esm/styles/hljs/brown-paper";
|
155 | export { default as codepenEmbed } from "react-syntax-highlighter/dist/esm/styles/hljs/codepen-embed";
|
156 | export { default as colorBrewer } from "react-syntax-highlighter/dist/esm/styles/hljs/color-brewer";
|
157 | export { default as darcula } from "react-syntax-highlighter/dist/esm/styles/hljs/darcula";
|
158 | export { default as dark } from "react-syntax-highlighter/dist/esm/styles/hljs/dark";
|
159 | export { default as defaultStyle } from "react-syntax-highlighter/dist/esm/styles/hljs/default-style";
|
160 | export { default as docco } from "react-syntax-highlighter/dist/esm/styles/hljs/docco";
|
161 | export { default as dracula } from "react-syntax-highlighter/dist/esm/styles/hljs/dracula";
|
162 | export { default as far } from "react-syntax-highlighter/dist/esm/styles/hljs/far";
|
163 | export { default as foundation } from "react-syntax-highlighter/dist/esm/styles/hljs/foundation";
|
164 | export { default as githubGist } from "react-syntax-highlighter/dist/esm/styles/hljs/github-gist";
|
165 | export { default as github } from "react-syntax-highlighter/dist/esm/styles/hljs/github";
|
166 | export { default as gml } from "react-syntax-highlighter/dist/esm/styles/hljs/gml";
|
167 | export { default as googlecode } from "react-syntax-highlighter/dist/esm/styles/hljs/googlecode";
|
168 | export { default as gradientDark } from "react-syntax-highlighter/dist/esm/styles/hljs/gradient-dark";
|
169 | export { default as grayscale } from "react-syntax-highlighter/dist/esm/styles/hljs/grayscale";
|
170 | export { default as gruvboxDark } from "react-syntax-highlighter/dist/esm/styles/hljs/gruvbox-dark";
|
171 | export { default as gruvboxLight } from "react-syntax-highlighter/dist/esm/styles/hljs/gruvbox-light";
|
172 | export { default as hopscotch } from "react-syntax-highlighter/dist/esm/styles/hljs/hopscotch";
|
173 | export { default as hybrid } from "react-syntax-highlighter/dist/esm/styles/hljs/hybrid";
|
174 | export { default as idea } from "react-syntax-highlighter/dist/esm/styles/hljs/idea";
|
175 | export { default as irBlack } from "react-syntax-highlighter/dist/esm/styles/hljs/ir-black";
|
176 | export { default as isblEditorDark } from "react-syntax-highlighter/dist/esm/styles/hljs/isbl-editor-dark";
|
177 | export { default as isblEditorLight } from "react-syntax-highlighter/dist/esm/styles/hljs/isbl-editor-light";
|
178 | export { default as kimbieDark } from "react-syntax-highlighter/dist/esm/styles/hljs/kimbie.dark";
|
179 | export { default as kimbieLight } from "react-syntax-highlighter/dist/esm/styles/hljs/kimbie.light";
|
180 | export { default as lightfair } from "react-syntax-highlighter/dist/esm/styles/hljs/lightfair";
|
181 | export { default as lioshi } from "react-syntax-highlighter/dist/esm/styles/hljs/lioshi";
|
182 | export { default as magula } from "react-syntax-highlighter/dist/esm/styles/hljs/magula";
|
183 | export { default as monoBlue } from "react-syntax-highlighter/dist/esm/styles/hljs/mono-blue";
|
184 | export { default as monokaiSublime } from "react-syntax-highlighter/dist/esm/styles/hljs/monokai-sublime";
|
185 | export { default as monokai } from "react-syntax-highlighter/dist/esm/styles/hljs/monokai";
|
186 | export { default as nightOwl } from "react-syntax-highlighter/dist/esm/styles/hljs/night-owl";
|
187 | export { default as nnfxDark } from "react-syntax-highlighter/dist/esm/styles/hljs/nnfx-dark";
|
188 | export { default as nnfx } from "react-syntax-highlighter/dist/esm/styles/hljs/nnfx";
|
189 | export { default as nord } from "react-syntax-highlighter/dist/esm/styles/hljs/nord";
|
190 | export { default as obsidian } from "react-syntax-highlighter/dist/esm/styles/hljs/obsidian";
|
191 | export { default as ocean } from "react-syntax-highlighter/dist/esm/styles/hljs/ocean";
|
192 | export { default as paraisoDark } from "react-syntax-highlighter/dist/esm/styles/hljs/paraiso-dark";
|
193 | export { default as paraisoLight } from "react-syntax-highlighter/dist/esm/styles/hljs/paraiso-light";
|
194 | export { default as pojoaque } from "react-syntax-highlighter/dist/esm/styles/hljs/pojoaque";
|
195 | export { default as purebasic } from "react-syntax-highlighter/dist/esm/styles/hljs/purebasic";
|
196 | export { default as qtcreatorDark } from "react-syntax-highlighter/dist/esm/styles/hljs/qtcreator_dark";
|
197 | export { default as qtcreatorLight } from "react-syntax-highlighter/dist/esm/styles/hljs/qtcreator_light";
|
198 | export { default as railscasts } from "react-syntax-highlighter/dist/esm/styles/hljs/railscasts";
|
199 | export { default as rainbow } from "react-syntax-highlighter/dist/esm/styles/hljs/rainbow";
|
200 | export { default as routeros } from "react-syntax-highlighter/dist/esm/styles/hljs/routeros";
|
201 | export { default as schoolBook } from "react-syntax-highlighter/dist/esm/styles/hljs/school-book";
|
202 | export { default as shadesOfPurple } from "react-syntax-highlighter/dist/esm/styles/hljs/shades-of-purple";
|
203 | export { default as solarizedDark } from "react-syntax-highlighter/dist/esm/styles/hljs/solarized-dark";
|
204 | export { default as solarizedLight } from "react-syntax-highlighter/dist/esm/styles/hljs/solarized-light";
|
205 | export { default as srcery } from "react-syntax-highlighter/dist/esm/styles/hljs/srcery";
|
206 | export { default as stackoverflowDark } from "react-syntax-highlighter/dist/esm/styles/hljs/stackoverflow-dark";
|
207 | export { default as stackoverflowLight } from "react-syntax-highlighter/dist/esm/styles/hljs/stackoverflow-light";
|
208 | export { default as sunburst } from "react-syntax-highlighter/dist/esm/styles/hljs/sunburst";
|
209 | export { default as tomorrowNightBlue } from "react-syntax-highlighter/dist/esm/styles/hljs/tomorrow-night-blue";
|
210 | export { default as tomorrowNightBright } from "react-syntax-highlighter/dist/esm/styles/hljs/tomorrow-night-bright";
|
211 | export { default as tomorrowNightEighties } from "react-syntax-highlighter/dist/esm/styles/hljs/tomorrow-night-eighties";
|
212 | export { default as tomorrowNight } from "react-syntax-highlighter/dist/esm/styles/hljs/tomorrow-night";
|
213 | export { default as tomorrow } from "react-syntax-highlighter/dist/esm/styles/hljs/tomorrow";
|
214 | export { default as vs } from "react-syntax-highlighter/dist/esm/styles/hljs/vs";
|
215 | export { default as vs2015 } from "react-syntax-highlighter/dist/esm/styles/hljs/vs2015";
|
216 | export { default as xcode } from "react-syntax-highlighter/dist/esm/styles/hljs/xcode";
|
217 | export { default as xt256 } from "react-syntax-highlighter/dist/esm/styles/hljs/xt256";
|
218 | export { default as zenburn } from "react-syntax-highlighter/dist/esm/styles/hljs/zenburn";
|
219 | }
|
220 |
|
221 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/a11y-dark" {
|
222 | const style: { [key: string]: React.CSSProperties };
|
223 | export default style;
|
224 | }
|
225 |
|
226 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/a11y-light" {
|
227 | const style: { [key: string]: React.CSSProperties };
|
228 | export default style;
|
229 | }
|
230 |
|
231 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/agate" {
|
232 | const style: { [key: string]: React.CSSProperties };
|
233 | export default style;
|
234 | }
|
235 |
|
236 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/an-old-hope" {
|
237 | const style: { [key: string]: React.CSSProperties };
|
238 | export default style;
|
239 | }
|
240 |
|
241 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/androidstudio" {
|
242 | const style: { [key: string]: React.CSSProperties };
|
243 | export default style;
|
244 | }
|
245 |
|
246 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/arduino-light" {
|
247 | const style: { [key: string]: React.CSSProperties };
|
248 | export default style;
|
249 | }
|
250 |
|
251 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/arta" {
|
252 | const style: { [key: string]: React.CSSProperties };
|
253 | export default style;
|
254 | }
|
255 |
|
256 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/ascetic" {
|
257 | const style: { [key: string]: React.CSSProperties };
|
258 | export default style;
|
259 | }
|
260 |
|
261 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/atelier-cave-dark" {
|
262 | const style: { [key: string]: React.CSSProperties };
|
263 | export default style;
|
264 | }
|
265 |
|
266 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/atelier-cave-light" {
|
267 | const style: { [key: string]: React.CSSProperties };
|
268 | export default style;
|
269 | }
|
270 |
|
271 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/atelier-dune-dark" {
|
272 | const style: { [key: string]: React.CSSProperties };
|
273 | export default style;
|
274 | }
|
275 |
|
276 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/atelier-dune-light" {
|
277 | const style: { [key: string]: React.CSSProperties };
|
278 | export default style;
|
279 | }
|
280 |
|
281 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/atelier-estuary-dark" {
|
282 | const style: { [key: string]: React.CSSProperties };
|
283 | export default style;
|
284 | }
|
285 |
|
286 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/atelier-estuary-light" {
|
287 | const style: { [key: string]: React.CSSProperties };
|
288 | export default style;
|
289 | }
|
290 |
|
291 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/atelier-forest-dark" {
|
292 | const style: { [key: string]: React.CSSProperties };
|
293 | export default style;
|
294 | }
|
295 |
|
296 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/atelier-forest-light" {
|
297 | const style: { [key: string]: React.CSSProperties };
|
298 | export default style;
|
299 | }
|
300 |
|
301 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/atelier-heath-dark" {
|
302 | const style: { [key: string]: React.CSSProperties };
|
303 | export default style;
|
304 | }
|
305 |
|
306 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/atelier-heath-light" {
|
307 | const style: { [key: string]: React.CSSProperties };
|
308 | export default style;
|
309 | }
|
310 |
|
311 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/atelier-lakeside-dark" {
|
312 | const style: { [key: string]: React.CSSProperties };
|
313 | export default style;
|
314 | }
|
315 |
|
316 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/atelier-lakeside-light" {
|
317 | const style: { [key: string]: React.CSSProperties };
|
318 | export default style;
|
319 | }
|
320 |
|
321 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/atelier-plateau-dark" {
|
322 | const style: { [key: string]: React.CSSProperties };
|
323 | export default style;
|
324 | }
|
325 |
|
326 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/atelier-plateau-light" {
|
327 | const style: { [key: string]: React.CSSProperties };
|
328 | export default style;
|
329 | }
|
330 |
|
331 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/atelier-savanna-dark" {
|
332 | const style: { [key: string]: React.CSSProperties };
|
333 | export default style;
|
334 | }
|
335 |
|
336 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/atelier-savanna-light" {
|
337 | const style: { [key: string]: React.CSSProperties };
|
338 | export default style;
|
339 | }
|
340 |
|
341 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/atelier-seaside-dark" {
|
342 | const style: { [key: string]: React.CSSProperties };
|
343 | export default style;
|
344 | }
|
345 |
|
346 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/atelier-seaside-light" {
|
347 | const style: { [key: string]: React.CSSProperties };
|
348 | export default style;
|
349 | }
|
350 |
|
351 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/atelier-sulphurpool-dark" {
|
352 | const style: { [key: string]: React.CSSProperties };
|
353 | export default style;
|
354 | }
|
355 |
|
356 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/atelier-sulphurpool-light" {
|
357 | const style: { [key: string]: React.CSSProperties };
|
358 | export default style;
|
359 | }
|
360 |
|
361 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/atom-one-dark-reasonable" {
|
362 | const style: { [key: string]: React.CSSProperties };
|
363 | export default style;
|
364 | }
|
365 |
|
366 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/atom-one-dark" {
|
367 | const style: { [key: string]: React.CSSProperties };
|
368 | export default style;
|
369 | }
|
370 |
|
371 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/atom-one-light" {
|
372 | const style: { [key: string]: React.CSSProperties };
|
373 | export default style;
|
374 | }
|
375 |
|
376 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/brown-paper" {
|
377 | const style: { [key: string]: React.CSSProperties };
|
378 | export default style;
|
379 | }
|
380 |
|
381 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/codepen-embed" {
|
382 | const style: { [key: string]: React.CSSProperties };
|
383 | export default style;
|
384 | }
|
385 |
|
386 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/color-brewer" {
|
387 | const style: { [key: string]: React.CSSProperties };
|
388 | export default style;
|
389 | }
|
390 |
|
391 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/darcula" {
|
392 | const style: { [key: string]: React.CSSProperties };
|
393 | export default style;
|
394 | }
|
395 |
|
396 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/dark" {
|
397 | const style: { [key: string]: React.CSSProperties };
|
398 | export default style;
|
399 | }
|
400 |
|
401 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/darkula" {
|
402 | const style: { [key: string]: React.CSSProperties };
|
403 | export default style;
|
404 | }
|
405 |
|
406 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/default-style" {
|
407 | const style: { [key: string]: React.CSSProperties };
|
408 | export default style;
|
409 | }
|
410 |
|
411 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/docco" {
|
412 | const style: { [key: string]: React.CSSProperties };
|
413 | export default style;
|
414 | }
|
415 |
|
416 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/dracula" {
|
417 | const style: { [key: string]: React.CSSProperties };
|
418 | export default style;
|
419 | }
|
420 |
|
421 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/far" {
|
422 | const style: { [key: string]: React.CSSProperties };
|
423 | export default style;
|
424 | }
|
425 |
|
426 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/foundation" {
|
427 | const style: { [key: string]: React.CSSProperties };
|
428 | export default style;
|
429 | }
|
430 |
|
431 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/github-gist" {
|
432 | const style: { [key: string]: React.CSSProperties };
|
433 | export default style;
|
434 | }
|
435 |
|
436 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/github" {
|
437 | const style: { [key: string]: React.CSSProperties };
|
438 | export default style;
|
439 | }
|
440 |
|
441 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/gml" {
|
442 | const style: { [key: string]: React.CSSProperties };
|
443 | export default style;
|
444 | }
|
445 |
|
446 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/googlecode" {
|
447 | const style: { [key: string]: React.CSSProperties };
|
448 | export default style;
|
449 | }
|
450 |
|
451 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/gradient-dark" {
|
452 | const style: { [key: string]: React.CSSProperties };
|
453 | export default style;
|
454 | }
|
455 |
|
456 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/grayscale" {
|
457 | const style: { [key: string]: React.CSSProperties };
|
458 | export default style;
|
459 | }
|
460 |
|
461 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/gruvbox-dark" {
|
462 | const style: { [key: string]: React.CSSProperties };
|
463 | export default style;
|
464 | }
|
465 |
|
466 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/gruvbox-light" {
|
467 | const style: { [key: string]: React.CSSProperties };
|
468 | export default style;
|
469 | }
|
470 |
|
471 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/hopscotch" {
|
472 | const style: { [key: string]: React.CSSProperties };
|
473 | export default style;
|
474 | }
|
475 |
|
476 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/hybrid" {
|
477 | const style: { [key: string]: React.CSSProperties };
|
478 | export default style;
|
479 | }
|
480 |
|
481 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/idea" {
|
482 | const style: { [key: string]: React.CSSProperties };
|
483 | export default style;
|
484 | }
|
485 |
|
486 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/ir-black" {
|
487 | const style: { [key: string]: React.CSSProperties };
|
488 | export default style;
|
489 | }
|
490 |
|
491 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/isbl-editor-dark" {
|
492 | const style: { [key: string]: React.CSSProperties };
|
493 | export default style;
|
494 | }
|
495 |
|
496 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/isbl-editor-light" {
|
497 | const style: { [key: string]: React.CSSProperties };
|
498 | export default style;
|
499 | }
|
500 |
|
501 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/kimbie.dark" {
|
502 | const style: { [key: string]: React.CSSProperties };
|
503 | export default style;
|
504 | }
|
505 |
|
506 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/kimbie.light" {
|
507 | const style: { [key: string]: React.CSSProperties };
|
508 | export default style;
|
509 | }
|
510 |
|
511 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/lightfair" {
|
512 | const style: { [key: string]: React.CSSProperties };
|
513 | export default style;
|
514 | }
|
515 |
|
516 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/lioshi" {
|
517 | const style: { [key: string]: React.CSSProperties };
|
518 | export default style;
|
519 | }
|
520 |
|
521 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/magula" {
|
522 | const style: { [key: string]: React.CSSProperties };
|
523 | export default style;
|
524 | }
|
525 |
|
526 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/mono-blue" {
|
527 | const style: { [key: string]: React.CSSProperties };
|
528 | export default style;
|
529 | }
|
530 |
|
531 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/monokai-sublime" {
|
532 | const style: { [key: string]: React.CSSProperties };
|
533 | export default style;
|
534 | }
|
535 |
|
536 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/monokai" {
|
537 | const style: { [key: string]: React.CSSProperties };
|
538 | export default style;
|
539 | }
|
540 |
|
541 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/night-owl" {
|
542 | const style: { [key: string]: React.CSSProperties };
|
543 | export default style;
|
544 | }
|
545 |
|
546 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/nnfx-dark" {
|
547 | const style: { [key: string]: React.CSSProperties };
|
548 | export default style;
|
549 | }
|
550 |
|
551 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/nnfx" {
|
552 | const style: { [key: string]: React.CSSProperties };
|
553 | export default style;
|
554 | }
|
555 |
|
556 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/nord" {
|
557 | const style: { [key: string]: React.CSSProperties };
|
558 | export default style;
|
559 | }
|
560 |
|
561 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/obsidian" {
|
562 | const style: { [key: string]: React.CSSProperties };
|
563 | export default style;
|
564 | }
|
565 |
|
566 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/ocean" {
|
567 | const style: { [key: string]: React.CSSProperties };
|
568 | export default style;
|
569 | }
|
570 |
|
571 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/paraiso-dark" {
|
572 | const style: { [key: string]: React.CSSProperties };
|
573 | export default style;
|
574 | }
|
575 |
|
576 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/paraiso-light" {
|
577 | const style: { [key: string]: React.CSSProperties };
|
578 | export default style;
|
579 | }
|
580 |
|
581 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/pojoaque" {
|
582 | const style: { [key: string]: React.CSSProperties };
|
583 | export default style;
|
584 | }
|
585 |
|
586 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/purebasic" {
|
587 | const style: { [key: string]: React.CSSProperties };
|
588 | export default style;
|
589 | }
|
590 |
|
591 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/qtcreator_dark" {
|
592 | const style: { [key: string]: React.CSSProperties };
|
593 | export default style;
|
594 | }
|
595 |
|
596 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/qtcreator_light" {
|
597 | const style: { [key: string]: React.CSSProperties };
|
598 | export default style;
|
599 | }
|
600 |
|
601 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/railscasts" {
|
602 | const style: { [key: string]: React.CSSProperties };
|
603 | export default style;
|
604 | }
|
605 |
|
606 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/rainbow" {
|
607 | const style: { [key: string]: React.CSSProperties };
|
608 | export default style;
|
609 | }
|
610 |
|
611 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/routeros" {
|
612 | const style: { [key: string]: React.CSSProperties };
|
613 | export default style;
|
614 | }
|
615 |
|
616 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/school-book" {
|
617 | const style: { [key: string]: React.CSSProperties };
|
618 | export default style;
|
619 | }
|
620 |
|
621 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/shades-of-purple" {
|
622 | const style: { [key: string]: React.CSSProperties };
|
623 | export default style;
|
624 | }
|
625 |
|
626 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/solarized-dark" {
|
627 | const style: { [key: string]: React.CSSProperties };
|
628 | export default style;
|
629 | }
|
630 |
|
631 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/solarized-light" {
|
632 | const style: { [key: string]: React.CSSProperties };
|
633 | export default style;
|
634 | }
|
635 |
|
636 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/srcery" {
|
637 | const style: { [key: string]: React.CSSProperties };
|
638 | export default style;
|
639 | }
|
640 |
|
641 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/stackoverflow-dark" {
|
642 | const style: { [key: string]: React.CSSProperties };
|
643 | export default style;
|
644 | }
|
645 |
|
646 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/stackoverflow-light" {
|
647 | const style: { [key: string]: React.CSSProperties };
|
648 | export default style;
|
649 | }
|
650 |
|
651 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/sunburst" {
|
652 | const style: { [key: string]: React.CSSProperties };
|
653 | export default style;
|
654 | }
|
655 |
|
656 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/tomorrow-night-blue" {
|
657 | const style: { [key: string]: React.CSSProperties };
|
658 | export default style;
|
659 | }
|
660 |
|
661 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/tomorrow-night-bright" {
|
662 | const style: { [key: string]: React.CSSProperties };
|
663 | export default style;
|
664 | }
|
665 |
|
666 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/tomorrow-night-eighties" {
|
667 | const style: { [key: string]: React.CSSProperties };
|
668 | export default style;
|
669 | }
|
670 |
|
671 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/tomorrow-night" {
|
672 | const style: { [key: string]: React.CSSProperties };
|
673 | export default style;
|
674 | }
|
675 |
|
676 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/tomorrow" {
|
677 | const style: { [key: string]: React.CSSProperties };
|
678 | export default style;
|
679 | }
|
680 |
|
681 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/vs" {
|
682 | const style: { [key: string]: React.CSSProperties };
|
683 | export default style;
|
684 | }
|
685 |
|
686 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/vs2015" {
|
687 | const style: { [key: string]: React.CSSProperties };
|
688 | export default style;
|
689 | }
|
690 |
|
691 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/xcode" {
|
692 | const style: { [key: string]: React.CSSProperties };
|
693 | export default style;
|
694 | }
|
695 |
|
696 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/xt256" {
|
697 | const style: { [key: string]: React.CSSProperties };
|
698 | export default style;
|
699 | }
|
700 |
|
701 | declare module "react-syntax-highlighter/dist/esm/styles/hljs/zenburn" {
|
702 | const style: { [key: string]: React.CSSProperties };
|
703 | export default style;
|
704 | }
|
705 |
|
706 | declare module "react-syntax-highlighter/dist/esm/styles/prism" {
|
707 | export { default as a11yDark } from "react-syntax-highlighter/dist/esm/styles/prism/a11y-dark";
|
708 | export { default as atomDark } from "react-syntax-highlighter/dist/esm/styles/prism/atom-dark";
|
709 | export { default as base16AteliersulphurpoolLight } from "react-syntax-highlighter/dist/esm/styles/prism/base16-ateliersulphurpool.light";
|
710 | export { default as cb } from "react-syntax-highlighter/dist/esm/styles/prism/cb";
|
711 | export { default as coldarkCold } from "react-syntax-highlighter/dist/esm/styles/prism/coldark-cold";
|
712 | export { default as coldarkDark } from "react-syntax-highlighter/dist/esm/styles/prism/coldark-dark";
|
713 | export { default as coyWithoutShadows } from "react-syntax-highlighter/dist/esm/styles/prism/coy-without-shadows";
|
714 | export { default as coy } from "react-syntax-highlighter/dist/esm/styles/prism/coy";
|
715 | export { default as darcula } from "react-syntax-highlighter/dist/esm/styles/prism/darcula";
|
716 | export { default as dark } from "react-syntax-highlighter/dist/esm/styles/prism/dark";
|
717 | export { default as dracula } from "react-syntax-highlighter/dist/esm/styles/prism/dracula";
|
718 | export { default as duotoneDark } from "react-syntax-highlighter/dist/esm/styles/prism/duotone-dark";
|
719 | export { default as duotoneEarth } from "react-syntax-highlighter/dist/esm/styles/prism/duotone-earth";
|
720 | export { default as duotoneForest } from "react-syntax-highlighter/dist/esm/styles/prism/duotone-forest";
|
721 | export { default as duotoneLight } from "react-syntax-highlighter/dist/esm/styles/prism/duotone-light";
|
722 | export { default as duotoneSea } from "react-syntax-highlighter/dist/esm/styles/prism/duotone-sea";
|
723 | export { default as duotoneSpace } from "react-syntax-highlighter/dist/esm/styles/prism/duotone-space";
|
724 | export { default as funky } from "react-syntax-highlighter/dist/esm/styles/prism/funky";
|
725 | export { default as ghcolors } from "react-syntax-highlighter/dist/esm/styles/prism/ghcolors";
|
726 | export { default as gruvboxDark } from "react-syntax-highlighter/dist/esm/styles/prism/gruvbox-dark";
|
727 | export { default as gruvboxLight } from "react-syntax-highlighter/dist/esm/styles/prism/gruvbox-light";
|
728 | export { default as holiTheme } from "react-syntax-highlighter/dist/esm/styles/prism/holi-theme";
|
729 | export { default as hopscotch } from "react-syntax-highlighter/dist/esm/styles/prism/hopscotch";
|
730 | export { default as lucario } from "react-syntax-highlighter/dist/esm/styles/prism/lucario";
|
731 | export { default as materialDark } from "react-syntax-highlighter/dist/esm/styles/prism/material-dark";
|
732 | export { default as materialLight } from "react-syntax-highlighter/dist/esm/styles/prism/material-light";
|
733 | export { default as materialOceanic } from "react-syntax-highlighter/dist/esm/styles/prism/material-oceanic";
|
734 | export { default as nightOwl } from "react-syntax-highlighter/dist/esm/styles/prism/night-owl";
|
735 | export { default as nord } from "react-syntax-highlighter/dist/esm/styles/prism/nord";
|
736 | export { default as okaidia } from "react-syntax-highlighter/dist/esm/styles/prism/okaidia";
|
737 | export { default as oneDark } from "react-syntax-highlighter/dist/esm/styles/prism/one-dark";
|
738 | export { default as oneLight } from "react-syntax-highlighter/dist/esm/styles/prism/one-light";
|
739 | export { default as pojoaque } from "react-syntax-highlighter/dist/esm/styles/prism/pojoaque";
|
740 | export { default as prism } from "react-syntax-highlighter/dist/esm/styles/prism/prism";
|
741 | export { default as shadesOfPurple } from "react-syntax-highlighter/dist/esm/styles/prism/shades-of-purple";
|
742 | export { default as solarizedDarkAtom } from "react-syntax-highlighter/dist/esm/styles/prism/solarized-dark-atom";
|
743 | export { default as solarizedlight } from "react-syntax-highlighter/dist/esm/styles/prism/solarizedlight";
|
744 | export { default as synthwave84 } from "react-syntax-highlighter/dist/esm/styles/prism/synthwave84";
|
745 | export { default as tomorrow } from "react-syntax-highlighter/dist/esm/styles/prism/tomorrow";
|
746 | export { default as twilight } from "react-syntax-highlighter/dist/esm/styles/prism/twilight";
|
747 | export { default as vs } from "react-syntax-highlighter/dist/esm/styles/prism/vs";
|
748 | export { default as vscDarkPlus } from "react-syntax-highlighter/dist/esm/styles/prism/vsc-dark-plus";
|
749 | export { default as xonokai } from "react-syntax-highlighter/dist/esm/styles/prism/xonokai";
|
750 | export { default as zTouch } from "react-syntax-highlighter/dist/esm/styles/prism/z-touch";
|
751 | }
|
752 |
|
753 | declare module "react-syntax-highlighter/dist/esm/styles/prism/a11y-dark" {
|
754 | const style: { [key: string]: React.CSSProperties };
|
755 | export default style;
|
756 | }
|
757 |
|
758 | declare module "react-syntax-highlighter/dist/esm/styles/prism/atom-dark" {
|
759 | const style: { [key: string]: React.CSSProperties };
|
760 | export default style;
|
761 | }
|
762 |
|
763 | declare module "react-syntax-highlighter/dist/esm/styles/prism/base16-ateliersulphurpool.light" {
|
764 | const style: { [key: string]: React.CSSProperties };
|
765 | export default style;
|
766 | }
|
767 |
|
768 | declare module "react-syntax-highlighter/dist/esm/styles/prism/cb" {
|
769 | const style: { [key: string]: React.CSSProperties };
|
770 | export default style;
|
771 | }
|
772 |
|
773 | declare module "react-syntax-highlighter/dist/esm/styles/prism/coldark-cold" {
|
774 | const style: { [key: string]: React.CSSProperties };
|
775 | export default style;
|
776 | }
|
777 |
|
778 | declare module "react-syntax-highlighter/dist/esm/styles/prism/coldark-dark" {
|
779 | const style: { [key: string]: React.CSSProperties };
|
780 | export default style;
|
781 | }
|
782 |
|
783 | declare module "react-syntax-highlighter/dist/esm/styles/prism/coy-without-shadows" {
|
784 | const style: { [key: string]: React.CSSProperties };
|
785 | export default style;
|
786 | }
|
787 |
|
788 | declare module "react-syntax-highlighter/dist/esm/styles/prism/coy" {
|
789 | const style: { [key: string]: React.CSSProperties };
|
790 | export default style;
|
791 | }
|
792 |
|
793 | declare module "react-syntax-highlighter/dist/esm/styles/prism/darcula" {
|
794 | const style: { [key: string]: React.CSSProperties };
|
795 | export default style;
|
796 | }
|
797 |
|
798 | declare module "react-syntax-highlighter/dist/esm/styles/prism/dark" {
|
799 | const style: { [key: string]: React.CSSProperties };
|
800 | export default style;
|
801 | }
|
802 |
|
803 | declare module "react-syntax-highlighter/dist/esm/styles/prism/dracula" {
|
804 | const style: { [key: string]: React.CSSProperties };
|
805 | export default style;
|
806 | }
|
807 |
|
808 | declare module "react-syntax-highlighter/dist/esm/styles/prism/duotone-dark" {
|
809 | const style: { [key: string]: React.CSSProperties };
|
810 | export default style;
|
811 | }
|
812 |
|
813 | declare module "react-syntax-highlighter/dist/esm/styles/prism/duotone-earth" {
|
814 | const style: { [key: string]: React.CSSProperties };
|
815 | export default style;
|
816 | }
|
817 |
|
818 | declare module "react-syntax-highlighter/dist/esm/styles/prism/duotone-forest" {
|
819 | const style: { [key: string]: React.CSSProperties };
|
820 | export default style;
|
821 | }
|
822 |
|
823 | declare module "react-syntax-highlighter/dist/esm/styles/prism/duotone-light" {
|
824 | const style: { [key: string]: React.CSSProperties };
|
825 | export default style;
|
826 | }
|
827 |
|
828 | declare module "react-syntax-highlighter/dist/esm/styles/prism/duotone-sea" {
|
829 | const style: { [key: string]: React.CSSProperties };
|
830 | export default style;
|
831 | }
|
832 |
|
833 | declare module "react-syntax-highlighter/dist/esm/styles/prism/duotone-space" {
|
834 | const style: { [key: string]: React.CSSProperties };
|
835 | export default style;
|
836 | }
|
837 |
|
838 | declare module "react-syntax-highlighter/dist/esm/styles/prism/funky" {
|
839 | const style: { [key: string]: React.CSSProperties };
|
840 | export default style;
|
841 | }
|
842 |
|
843 | declare module "react-syntax-highlighter/dist/esm/styles/prism/ghcolors" {
|
844 | const style: { [key: string]: React.CSSProperties };
|
845 | export default style;
|
846 | }
|
847 |
|
848 | declare module "react-syntax-highlighter/dist/esm/styles/prism/gruvbox-dark" {
|
849 | const style: { [key: string]: React.CSSProperties };
|
850 | export default style;
|
851 | }
|
852 |
|
853 | declare module "react-syntax-highlighter/dist/esm/styles/prism/gruvbox-light" {
|
854 | const style: { [key: string]: React.CSSProperties };
|
855 | export default style;
|
856 | }
|
857 |
|
858 | declare module "react-syntax-highlighter/dist/esm/styles/prism/holi-theme" {
|
859 | const style: { [key: string]: React.CSSProperties };
|
860 | export default style;
|
861 | }
|
862 |
|
863 | declare module "react-syntax-highlighter/dist/esm/styles/prism/hopscotch" {
|
864 | const style: { [key: string]: React.CSSProperties };
|
865 | export default style;
|
866 | }
|
867 |
|
868 | declare module "react-syntax-highlighter/dist/esm/styles/prism/lucario" {
|
869 | const style: { [key: string]: React.CSSProperties };
|
870 | export default style;
|
871 | }
|
872 |
|
873 | declare module "react-syntax-highlighter/dist/esm/styles/prism/material-dark" {
|
874 | const style: { [key: string]: React.CSSProperties };
|
875 | export default style;
|
876 | }
|
877 |
|
878 | declare module "react-syntax-highlighter/dist/esm/styles/prism/material-light" {
|
879 | const style: { [key: string]: React.CSSProperties };
|
880 | export default style;
|
881 | }
|
882 |
|
883 | declare module "react-syntax-highlighter/dist/esm/styles/prism/material-oceanic" {
|
884 | const style: { [key: string]: React.CSSProperties };
|
885 | export default style;
|
886 | }
|
887 |
|
888 | declare module "react-syntax-highlighter/dist/esm/styles/prism/night-owl" {
|
889 | const style: { [key: string]: React.CSSProperties };
|
890 | export default style;
|
891 | }
|
892 |
|
893 | declare module "react-syntax-highlighter/dist/esm/styles/prism/nord" {
|
894 | const style: { [key: string]: React.CSSProperties };
|
895 | export default style;
|
896 | }
|
897 |
|
898 | declare module "react-syntax-highlighter/dist/esm/styles/prism/okaidia" {
|
899 | const style: { [key: string]: React.CSSProperties };
|
900 | export default style;
|
901 | }
|
902 |
|
903 | declare module "react-syntax-highlighter/dist/esm/styles/prism/one-light" {
|
904 | const style: { [key: string]: React.CSSProperties };
|
905 | export default style;
|
906 | }
|
907 |
|
908 | declare module "react-syntax-highlighter/dist/esm/styles/prism/one-dark" {
|
909 | const style: { [key: string]: React.CSSProperties };
|
910 | export default style;
|
911 | }
|
912 |
|
913 | declare module "react-syntax-highlighter/dist/esm/styles/prism/pojoaque" {
|
914 | const style: { [key: string]: React.CSSProperties };
|
915 | export default style;
|
916 | }
|
917 |
|
918 | declare module "react-syntax-highlighter/dist/esm/styles/prism/prism" {
|
919 | const style: { [key: string]: React.CSSProperties };
|
920 | export default style;
|
921 | }
|
922 |
|
923 | declare module "react-syntax-highlighter/dist/esm/styles/prism/shades-of-purple" {
|
924 | const style: { [key: string]: React.CSSProperties };
|
925 | export default style;
|
926 | }
|
927 |
|
928 | declare module "react-syntax-highlighter/dist/esm/styles/prism/solarized-dark-atom" {
|
929 | const style: { [key: string]: React.CSSProperties };
|
930 | export default style;
|
931 | }
|
932 |
|
933 | declare module "react-syntax-highlighter/dist/esm/styles/prism/solarizedlight" {
|
934 | const style: { [key: string]: React.CSSProperties };
|
935 | export default style;
|
936 | }
|
937 |
|
938 | declare module "react-syntax-highlighter/dist/esm/styles/prism/synthwave84" {
|
939 | const style: { [key: string]: React.CSSProperties };
|
940 | export default style;
|
941 | }
|
942 |
|
943 | declare module "react-syntax-highlighter/dist/esm/styles/prism/tomorrow" {
|
944 | const style: { [key: string]: React.CSSProperties };
|
945 | export default style;
|
946 | }
|
947 |
|
948 | declare module "react-syntax-highlighter/dist/esm/styles/prism/twilight" {
|
949 | const style: { [key: string]: React.CSSProperties };
|
950 | export default style;
|
951 | }
|
952 |
|
953 | declare module "react-syntax-highlighter/dist/esm/styles/prism/vs" {
|
954 | const style: { [key: string]: React.CSSProperties };
|
955 | export default style;
|
956 | }
|
957 |
|
958 | declare module "react-syntax-highlighter/dist/esm/styles/prism/vsc-dark-plus" {
|
959 | const style: { [key: string]: React.CSSProperties };
|
960 | export default style;
|
961 | }
|
962 |
|
963 | declare module "react-syntax-highlighter/dist/esm/styles/prism/xonokai" {
|
964 | const style: { [key: string]: React.CSSProperties };
|
965 | export default style;
|
966 | }
|
967 |
|
968 | declare module "react-syntax-highlighter/dist/esm/styles/prism/z-touch" {
|
969 | const style: { [key: string]: React.CSSProperties };
|
970 | export default style;
|
971 | }
|
972 |
|
973 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/1c" {
|
974 | const language: any;
|
975 | export default language;
|
976 | }
|
977 |
|
978 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/abnf" {
|
979 | const language: any;
|
980 | export default language;
|
981 | }
|
982 |
|
983 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/accesslog" {
|
984 | const language: any;
|
985 | export default language;
|
986 | }
|
987 |
|
988 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/actionscript" {
|
989 | const language: any;
|
990 | export default language;
|
991 | }
|
992 |
|
993 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/ada" {
|
994 | const language: any;
|
995 | export default language;
|
996 | }
|
997 |
|
998 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/angelscript" {
|
999 | const language: any;
|
1000 | export default language;
|
1001 | }
|
1002 |
|
1003 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/apache" {
|
1004 | const language: any;
|
1005 | export default language;
|
1006 | }
|
1007 |
|
1008 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/applescript" {
|
1009 | const language: any;
|
1010 | export default language;
|
1011 | }
|
1012 |
|
1013 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/arcade" {
|
1014 | const language: any;
|
1015 | export default language;
|
1016 | }
|
1017 |
|
1018 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/arduino" {
|
1019 | const language: any;
|
1020 | export default language;
|
1021 | }
|
1022 |
|
1023 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/armasm" {
|
1024 | const language: any;
|
1025 | export default language;
|
1026 | }
|
1027 |
|
1028 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/asciidoc" {
|
1029 | const language: any;
|
1030 | export default language;
|
1031 | }
|
1032 |
|
1033 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/aspectj" {
|
1034 | const language: any;
|
1035 | export default language;
|
1036 | }
|
1037 |
|
1038 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/autohotkey" {
|
1039 | const language: any;
|
1040 | export default language;
|
1041 | }
|
1042 |
|
1043 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/autoit" {
|
1044 | const language: any;
|
1045 | export default language;
|
1046 | }
|
1047 |
|
1048 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/avrasm" {
|
1049 | const language: any;
|
1050 | export default language;
|
1051 | }
|
1052 |
|
1053 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/awk" {
|
1054 | const language: any;
|
1055 | export default language;
|
1056 | }
|
1057 |
|
1058 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/axapta" {
|
1059 | const language: any;
|
1060 | export default language;
|
1061 | }
|
1062 |
|
1063 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/bash" {
|
1064 | const language: any;
|
1065 | export default language;
|
1066 | }
|
1067 |
|
1068 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/basic" {
|
1069 | const language: any;
|
1070 | export default language;
|
1071 | }
|
1072 |
|
1073 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/bnf" {
|
1074 | const language: any;
|
1075 | export default language;
|
1076 | }
|
1077 |
|
1078 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/brainfuck" {
|
1079 | const language: any;
|
1080 | export default language;
|
1081 | }
|
1082 |
|
1083 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/c-like" {
|
1084 | const language: any;
|
1085 | export default language;
|
1086 | }
|
1087 |
|
1088 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/c" {
|
1089 | const language: any;
|
1090 | export default language;
|
1091 | }
|
1092 |
|
1093 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/cal" {
|
1094 | const language: any;
|
1095 | export default language;
|
1096 | }
|
1097 |
|
1098 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/capnproto" {
|
1099 | const language: any;
|
1100 | export default language;
|
1101 | }
|
1102 |
|
1103 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/ceylon" {
|
1104 | const language: any;
|
1105 | export default language;
|
1106 | }
|
1107 |
|
1108 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/clean" {
|
1109 | const language: any;
|
1110 | export default language;
|
1111 | }
|
1112 |
|
1113 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/clojure-repl" {
|
1114 | const language: any;
|
1115 | export default language;
|
1116 | }
|
1117 |
|
1118 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/clojure" {
|
1119 | const language: any;
|
1120 | export default language;
|
1121 | }
|
1122 |
|
1123 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/cmake" {
|
1124 | const language: any;
|
1125 | export default language;
|
1126 | }
|
1127 |
|
1128 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/coffeescript" {
|
1129 | const language: any;
|
1130 | export default language;
|
1131 | }
|
1132 |
|
1133 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/coq" {
|
1134 | const language: any;
|
1135 | export default language;
|
1136 | }
|
1137 |
|
1138 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/cos" {
|
1139 | const language: any;
|
1140 | export default language;
|
1141 | }
|
1142 |
|
1143 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/cpp" {
|
1144 | const language: any;
|
1145 | export default language;
|
1146 | }
|
1147 |
|
1148 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/crmsh" {
|
1149 | const language: any;
|
1150 | export default language;
|
1151 | }
|
1152 |
|
1153 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/crystal" {
|
1154 | const language: any;
|
1155 | export default language;
|
1156 | }
|
1157 |
|
1158 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/cs" {
|
1159 | const language: any;
|
1160 | export default language;
|
1161 | }
|
1162 |
|
1163 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/csharp" {
|
1164 | const language: any;
|
1165 | export default language;
|
1166 | }
|
1167 |
|
1168 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/csp" {
|
1169 | const language: any;
|
1170 | export default language;
|
1171 | }
|
1172 |
|
1173 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/css" {
|
1174 | const language: any;
|
1175 | export default language;
|
1176 | }
|
1177 |
|
1178 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/d" {
|
1179 | const language: any;
|
1180 | export default language;
|
1181 | }
|
1182 |
|
1183 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/dart" {
|
1184 | const language: any;
|
1185 | export default language;
|
1186 | }
|
1187 |
|
1188 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/delphi" {
|
1189 | const language: any;
|
1190 | export default language;
|
1191 | }
|
1192 |
|
1193 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/diff" {
|
1194 | const language: any;
|
1195 | export default language;
|
1196 | }
|
1197 |
|
1198 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/django" {
|
1199 | const language: any;
|
1200 | export default language;
|
1201 | }
|
1202 |
|
1203 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/dns" {
|
1204 | const language: any;
|
1205 | export default language;
|
1206 | }
|
1207 |
|
1208 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/dockerfile" {
|
1209 | const language: any;
|
1210 | export default language;
|
1211 | }
|
1212 |
|
1213 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/dos" {
|
1214 | const language: any;
|
1215 | export default language;
|
1216 | }
|
1217 |
|
1218 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/dsconfig" {
|
1219 | const language: any;
|
1220 | export default language;
|
1221 | }
|
1222 |
|
1223 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/dts" {
|
1224 | const language: any;
|
1225 | export default language;
|
1226 | }
|
1227 |
|
1228 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/dust" {
|
1229 | const language: any;
|
1230 | export default language;
|
1231 | }
|
1232 |
|
1233 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/ebnf" {
|
1234 | const language: any;
|
1235 | export default language;
|
1236 | }
|
1237 |
|
1238 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/elixir" {
|
1239 | const language: any;
|
1240 | export default language;
|
1241 | }
|
1242 |
|
1243 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/elm" {
|
1244 | const language: any;
|
1245 | export default language;
|
1246 | }
|
1247 |
|
1248 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/erb" {
|
1249 | const language: any;
|
1250 | export default language;
|
1251 | }
|
1252 |
|
1253 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/erlang-repl" {
|
1254 | const language: any;
|
1255 | export default language;
|
1256 | }
|
1257 |
|
1258 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/erlang" {
|
1259 | const language: any;
|
1260 | export default language;
|
1261 | }
|
1262 |
|
1263 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/excel" {
|
1264 | const language: any;
|
1265 | export default language;
|
1266 | }
|
1267 |
|
1268 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/fix" {
|
1269 | const language: any;
|
1270 | export default language;
|
1271 | }
|
1272 |
|
1273 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/flix" {
|
1274 | const language: any;
|
1275 | export default language;
|
1276 | }
|
1277 |
|
1278 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/fortran" {
|
1279 | const language: any;
|
1280 | export default language;
|
1281 | }
|
1282 |
|
1283 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/fsharp" {
|
1284 | const language: any;
|
1285 | export default language;
|
1286 | }
|
1287 |
|
1288 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/gams" {
|
1289 | const language: any;
|
1290 | export default language;
|
1291 | }
|
1292 |
|
1293 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/gauss" {
|
1294 | const language: any;
|
1295 | export default language;
|
1296 | }
|
1297 |
|
1298 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/gcode" {
|
1299 | const language: any;
|
1300 | export default language;
|
1301 | }
|
1302 |
|
1303 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/gherkin" {
|
1304 | const language: any;
|
1305 | export default language;
|
1306 | }
|
1307 |
|
1308 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/glsl" {
|
1309 | const language: any;
|
1310 | export default language;
|
1311 | }
|
1312 |
|
1313 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/gml" {
|
1314 | const language: any;
|
1315 | export default language;
|
1316 | }
|
1317 |
|
1318 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/go" {
|
1319 | const language: any;
|
1320 | export default language;
|
1321 | }
|
1322 |
|
1323 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/golo" {
|
1324 | const language: any;
|
1325 | export default language;
|
1326 | }
|
1327 |
|
1328 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/gradle" {
|
1329 | const language: any;
|
1330 | export default language;
|
1331 | }
|
1332 |
|
1333 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/groovy" {
|
1334 | const language: any;
|
1335 | export default language;
|
1336 | }
|
1337 |
|
1338 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/haml" {
|
1339 | const language: any;
|
1340 | export default language;
|
1341 | }
|
1342 |
|
1343 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/handlebars" {
|
1344 | const language: any;
|
1345 | export default language;
|
1346 | }
|
1347 |
|
1348 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/haskell" {
|
1349 | const language: any;
|
1350 | export default language;
|
1351 | }
|
1352 |
|
1353 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/haxe" {
|
1354 | const language: any;
|
1355 | export default language;
|
1356 | }
|
1357 |
|
1358 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/hsp" {
|
1359 | const language: any;
|
1360 | export default language;
|
1361 | }
|
1362 |
|
1363 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/htmlbars" {
|
1364 | const language: any;
|
1365 | export default language;
|
1366 | }
|
1367 |
|
1368 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/http" {
|
1369 | const language: any;
|
1370 | export default language;
|
1371 | }
|
1372 |
|
1373 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/hy" {
|
1374 | const language: any;
|
1375 | export default language;
|
1376 | }
|
1377 |
|
1378 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/inform7" {
|
1379 | const language: any;
|
1380 | export default language;
|
1381 | }
|
1382 |
|
1383 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/ini" {
|
1384 | const language: any;
|
1385 | export default language;
|
1386 | }
|
1387 |
|
1388 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/irpf90" {
|
1389 | const language: any;
|
1390 | export default language;
|
1391 | }
|
1392 |
|
1393 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/isbl" {
|
1394 | const language: any;
|
1395 | export default language;
|
1396 | }
|
1397 |
|
1398 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/java" {
|
1399 | const language: any;
|
1400 | export default language;
|
1401 | }
|
1402 |
|
1403 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/javascript" {
|
1404 | const language: any;
|
1405 | export default language;
|
1406 | }
|
1407 |
|
1408 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/jboss-cli" {
|
1409 | const language: any;
|
1410 | export default language;
|
1411 | }
|
1412 |
|
1413 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/json" {
|
1414 | const language: any;
|
1415 | export default language;
|
1416 | }
|
1417 |
|
1418 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/julia-repl" {
|
1419 | const language: any;
|
1420 | export default language;
|
1421 | }
|
1422 |
|
1423 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/julia" {
|
1424 | const language: any;
|
1425 | export default language;
|
1426 | }
|
1427 |
|
1428 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/kotlin" {
|
1429 | const language: any;
|
1430 | export default language;
|
1431 | }
|
1432 |
|
1433 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/lasso" {
|
1434 | const language: any;
|
1435 | export default language;
|
1436 | }
|
1437 |
|
1438 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/latex" {
|
1439 | const language: any;
|
1440 | export default language;
|
1441 | }
|
1442 |
|
1443 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/ldif" {
|
1444 | const language: any;
|
1445 | export default language;
|
1446 | }
|
1447 |
|
1448 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/leaf" {
|
1449 | const language: any;
|
1450 | export default language;
|
1451 | }
|
1452 |
|
1453 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/less" {
|
1454 | const language: any;
|
1455 | export default language;
|
1456 | }
|
1457 |
|
1458 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/lisp" {
|
1459 | const language: any;
|
1460 | export default language;
|
1461 | }
|
1462 |
|
1463 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/livecodeserver" {
|
1464 | const language: any;
|
1465 | export default language;
|
1466 | }
|
1467 |
|
1468 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/livescript" {
|
1469 | const language: any;
|
1470 | export default language;
|
1471 | }
|
1472 |
|
1473 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/llvm" {
|
1474 | const language: any;
|
1475 | export default language;
|
1476 | }
|
1477 |
|
1478 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/lsl" {
|
1479 | const language: any;
|
1480 | export default language;
|
1481 | }
|
1482 |
|
1483 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/lua" {
|
1484 | const language: any;
|
1485 | export default language;
|
1486 | }
|
1487 |
|
1488 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/makefile" {
|
1489 | const language: any;
|
1490 | export default language;
|
1491 | }
|
1492 |
|
1493 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/markdown" {
|
1494 | const language: any;
|
1495 | export default language;
|
1496 | }
|
1497 |
|
1498 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/mathematica" {
|
1499 | const language: any;
|
1500 | export default language;
|
1501 | }
|
1502 |
|
1503 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/matlab" {
|
1504 | const language: any;
|
1505 | export default language;
|
1506 | }
|
1507 |
|
1508 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/maxima" {
|
1509 | const language: any;
|
1510 | export default language;
|
1511 | }
|
1512 |
|
1513 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/mel" {
|
1514 | const language: any;
|
1515 | export default language;
|
1516 | }
|
1517 |
|
1518 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/mercury" {
|
1519 | const language: any;
|
1520 | export default language;
|
1521 | }
|
1522 |
|
1523 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/mipsasm" {
|
1524 | const language: any;
|
1525 | export default language;
|
1526 | }
|
1527 |
|
1528 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/mizar" {
|
1529 | const language: any;
|
1530 | export default language;
|
1531 | }
|
1532 |
|
1533 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/mojolicious" {
|
1534 | const language: any;
|
1535 | export default language;
|
1536 | }
|
1537 |
|
1538 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/monkey" {
|
1539 | const language: any;
|
1540 | export default language;
|
1541 | }
|
1542 |
|
1543 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/moonscript" {
|
1544 | const language: any;
|
1545 | export default language;
|
1546 | }
|
1547 |
|
1548 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/n1ql" {
|
1549 | const language: any;
|
1550 | export default language;
|
1551 | }
|
1552 |
|
1553 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/nginx" {
|
1554 | const language: any;
|
1555 | export default language;
|
1556 | }
|
1557 |
|
1558 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/nim" {
|
1559 | const language: any;
|
1560 | export default language;
|
1561 | }
|
1562 |
|
1563 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/nimrod" {
|
1564 | const language: any;
|
1565 | export default language;
|
1566 | }
|
1567 |
|
1568 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/nix" {
|
1569 | const language: any;
|
1570 | export default language;
|
1571 | }
|
1572 |
|
1573 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/nsis" {
|
1574 | const language: any;
|
1575 | export default language;
|
1576 | }
|
1577 |
|
1578 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/objectivec" {
|
1579 | const language: any;
|
1580 | export default language;
|
1581 | }
|
1582 |
|
1583 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/ocaml" {
|
1584 | const language: any;
|
1585 | export default language;
|
1586 | }
|
1587 |
|
1588 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/openscad" {
|
1589 | const language: any;
|
1590 | export default language;
|
1591 | }
|
1592 |
|
1593 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/oxygene" {
|
1594 | const language: any;
|
1595 | export default language;
|
1596 | }
|
1597 |
|
1598 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/parser3" {
|
1599 | const language: any;
|
1600 | export default language;
|
1601 | }
|
1602 |
|
1603 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/perl" {
|
1604 | const language: any;
|
1605 | export default language;
|
1606 | }
|
1607 |
|
1608 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/pf" {
|
1609 | const language: any;
|
1610 | export default language;
|
1611 | }
|
1612 |
|
1613 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/pgsql" {
|
1614 | const language: any;
|
1615 | export default language;
|
1616 | }
|
1617 |
|
1618 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/php-template" {
|
1619 | const language: any;
|
1620 | export default language;
|
1621 | }
|
1622 |
|
1623 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/php" {
|
1624 | const language: any;
|
1625 | export default language;
|
1626 | }
|
1627 |
|
1628 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/plaintext" {
|
1629 | const language: any;
|
1630 | export default language;
|
1631 | }
|
1632 |
|
1633 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/pony" {
|
1634 | const language: any;
|
1635 | export default language;
|
1636 | }
|
1637 |
|
1638 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/powershell" {
|
1639 | const language: any;
|
1640 | export default language;
|
1641 | }
|
1642 |
|
1643 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/processing" {
|
1644 | const language: any;
|
1645 | export default language;
|
1646 | }
|
1647 |
|
1648 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/profile" {
|
1649 | const language: any;
|
1650 | export default language;
|
1651 | }
|
1652 |
|
1653 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/prolog" {
|
1654 | const language: any;
|
1655 | export default language;
|
1656 | }
|
1657 |
|
1658 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/properties" {
|
1659 | const language: any;
|
1660 | export default language;
|
1661 | }
|
1662 |
|
1663 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/protobuf" {
|
1664 | const language: any;
|
1665 | export default language;
|
1666 | }
|
1667 |
|
1668 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/puppet" {
|
1669 | const language: any;
|
1670 | export default language;
|
1671 | }
|
1672 |
|
1673 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/purebasic" {
|
1674 | const language: any;
|
1675 | export default language;
|
1676 | }
|
1677 |
|
1678 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/python-repl" {
|
1679 | const language: any;
|
1680 | export default language;
|
1681 | }
|
1682 |
|
1683 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/python" {
|
1684 | const language: any;
|
1685 | export default language;
|
1686 | }
|
1687 |
|
1688 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/q" {
|
1689 | const language: any;
|
1690 | export default language;
|
1691 | }
|
1692 |
|
1693 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/qml" {
|
1694 | const language: any;
|
1695 | export default language;
|
1696 | }
|
1697 |
|
1698 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/r" {
|
1699 | const language: any;
|
1700 | export default language;
|
1701 | }
|
1702 |
|
1703 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/reasonml" {
|
1704 | const language: any;
|
1705 | export default language;
|
1706 | }
|
1707 |
|
1708 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/rib" {
|
1709 | const language: any;
|
1710 | export default language;
|
1711 | }
|
1712 |
|
1713 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/roboconf" {
|
1714 | const language: any;
|
1715 | export default language;
|
1716 | }
|
1717 |
|
1718 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/routeros" {
|
1719 | const language: any;
|
1720 | export default language;
|
1721 | }
|
1722 |
|
1723 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/rsl" {
|
1724 | const language: any;
|
1725 | export default language;
|
1726 | }
|
1727 |
|
1728 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/ruby" {
|
1729 | const language: any;
|
1730 | export default language;
|
1731 | }
|
1732 |
|
1733 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/ruleslanguage" {
|
1734 | const language: any;
|
1735 | export default language;
|
1736 | }
|
1737 |
|
1738 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/rust" {
|
1739 | const language: any;
|
1740 | export default language;
|
1741 | }
|
1742 |
|
1743 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/sas" {
|
1744 | const language: any;
|
1745 | export default language;
|
1746 | }
|
1747 |
|
1748 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/scala" {
|
1749 | const language: any;
|
1750 | export default language;
|
1751 | }
|
1752 |
|
1753 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/scheme" {
|
1754 | const language: any;
|
1755 | export default language;
|
1756 | }
|
1757 |
|
1758 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/scilab" {
|
1759 | const language: any;
|
1760 | export default language;
|
1761 | }
|
1762 |
|
1763 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/scss" {
|
1764 | const language: any;
|
1765 | export default language;
|
1766 | }
|
1767 |
|
1768 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/shell" {
|
1769 | const language: any;
|
1770 | export default language;
|
1771 | }
|
1772 |
|
1773 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/smali" {
|
1774 | const language: any;
|
1775 | export default language;
|
1776 | }
|
1777 |
|
1778 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/smalltalk" {
|
1779 | const language: any;
|
1780 | export default language;
|
1781 | }
|
1782 |
|
1783 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/sml" {
|
1784 | const language: any;
|
1785 | export default language;
|
1786 | }
|
1787 |
|
1788 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/sqf" {
|
1789 | const language: any;
|
1790 | export default language;
|
1791 | }
|
1792 |
|
1793 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/sql" {
|
1794 | const language: any;
|
1795 | export default language;
|
1796 | }
|
1797 |
|
1798 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/stan" {
|
1799 | const language: any;
|
1800 | export default language;
|
1801 | }
|
1802 |
|
1803 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/stata" {
|
1804 | const language: any;
|
1805 | export default language;
|
1806 | }
|
1807 |
|
1808 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/step21" {
|
1809 | const language: any;
|
1810 | export default language;
|
1811 | }
|
1812 |
|
1813 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/stylus" {
|
1814 | const language: any;
|
1815 | export default language;
|
1816 | }
|
1817 |
|
1818 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/subunit" {
|
1819 | const language: any;
|
1820 | export default language;
|
1821 | }
|
1822 |
|
1823 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/swift" {
|
1824 | const language: any;
|
1825 | export default language;
|
1826 | }
|
1827 |
|
1828 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/taggerscript" {
|
1829 | const language: any;
|
1830 | export default language;
|
1831 | }
|
1832 |
|
1833 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/tap" {
|
1834 | const language: any;
|
1835 | export default language;
|
1836 | }
|
1837 |
|
1838 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/tcl" {
|
1839 | const language: any;
|
1840 | export default language;
|
1841 | }
|
1842 |
|
1843 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/tex" {
|
1844 | const language: any;
|
1845 | export default language;
|
1846 | }
|
1847 |
|
1848 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/thrift" {
|
1849 | const language: any;
|
1850 | export default language;
|
1851 | }
|
1852 |
|
1853 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/tp" {
|
1854 | const language: any;
|
1855 | export default language;
|
1856 | }
|
1857 |
|
1858 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/twig" {
|
1859 | const language: any;
|
1860 | export default language;
|
1861 | }
|
1862 |
|
1863 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/typescript" {
|
1864 | const language: any;
|
1865 | export default language;
|
1866 | }
|
1867 |
|
1868 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/vala" {
|
1869 | const language: any;
|
1870 | export default language;
|
1871 | }
|
1872 |
|
1873 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/vbnet" {
|
1874 | const language: any;
|
1875 | export default language;
|
1876 | }
|
1877 |
|
1878 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/vbscript-html" {
|
1879 | const language: any;
|
1880 | export default language;
|
1881 | }
|
1882 |
|
1883 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/vbscript" {
|
1884 | const language: any;
|
1885 | export default language;
|
1886 | }
|
1887 |
|
1888 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/verilog" {
|
1889 | const language: any;
|
1890 | export default language;
|
1891 | }
|
1892 |
|
1893 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/vhdl" {
|
1894 | const language: any;
|
1895 | export default language;
|
1896 | }
|
1897 |
|
1898 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/vim" {
|
1899 | const language: any;
|
1900 | export default language;
|
1901 | }
|
1902 |
|
1903 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/x86asm" {
|
1904 | const language: any;
|
1905 | export default language;
|
1906 | }
|
1907 |
|
1908 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/xl" {
|
1909 | const language: any;
|
1910 | export default language;
|
1911 | }
|
1912 |
|
1913 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/xml" {
|
1914 | const language: any;
|
1915 | export default language;
|
1916 | }
|
1917 |
|
1918 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/xquery" {
|
1919 | const language: any;
|
1920 | export default language;
|
1921 | }
|
1922 |
|
1923 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/yaml" {
|
1924 | const language: any;
|
1925 | export default language;
|
1926 | }
|
1927 |
|
1928 | declare module "react-syntax-highlighter/dist/esm/languages/hljs/zephir" {
|
1929 | const language: any;
|
1930 | export default language;
|
1931 | }
|
1932 |
|
1933 | declare module "react-syntax-highlighter/dist/esm/languages/prism/abap" {
|
1934 | const language: any;
|
1935 | export default language;
|
1936 | }
|
1937 |
|
1938 | declare module "react-syntax-highlighter/dist/esm/languages/prism/abnf" {
|
1939 | const language: any;
|
1940 | export default language;
|
1941 | }
|
1942 |
|
1943 | declare module "react-syntax-highlighter/dist/esm/languages/prism/actionscript" {
|
1944 | const language: any;
|
1945 | export default language;
|
1946 | }
|
1947 |
|
1948 | declare module "react-syntax-highlighter/dist/esm/languages/prism/ada" {
|
1949 | const language: any;
|
1950 | export default language;
|
1951 | }
|
1952 |
|
1953 | declare module "react-syntax-highlighter/dist/esm/languages/prism/agda" {
|
1954 | const language: any;
|
1955 | export default language;
|
1956 | }
|
1957 |
|
1958 | declare module "react-syntax-highlighter/dist/esm/languages/prism/al" {
|
1959 | const language: any;
|
1960 | export default language;
|
1961 | }
|
1962 |
|
1963 | declare module "react-syntax-highlighter/dist/esm/languages/prism/antlr4" {
|
1964 | const language: any;
|
1965 | export default language;
|
1966 | }
|
1967 |
|
1968 | declare module "react-syntax-highlighter/dist/esm/languages/prism/apacheconf" {
|
1969 | const language: any;
|
1970 | export default language;
|
1971 | }
|
1972 |
|
1973 | declare module "react-syntax-highlighter/dist/esm/languages/prism/apl" {
|
1974 | const language: any;
|
1975 | export default language;
|
1976 | }
|
1977 |
|
1978 | declare module "react-syntax-highlighter/dist/esm/languages/prism/applescript" {
|
1979 | const language: any;
|
1980 | export default language;
|
1981 | }
|
1982 |
|
1983 | declare module "react-syntax-highlighter/dist/esm/languages/prism/aql" {
|
1984 | const language: any;
|
1985 | export default language;
|
1986 | }
|
1987 |
|
1988 | declare module "react-syntax-highlighter/dist/esm/languages/prism/arduino" {
|
1989 | const language: any;
|
1990 | export default language;
|
1991 | }
|
1992 |
|
1993 | declare module "react-syntax-highlighter/dist/esm/languages/prism/arff" {
|
1994 | const language: any;
|
1995 | export default language;
|
1996 | }
|
1997 |
|
1998 | declare module "react-syntax-highlighter/dist/esm/languages/prism/asciidoc" {
|
1999 | const language: any;
|
2000 | export default language;
|
2001 | }
|
2002 |
|
2003 | declare module "react-syntax-highlighter/dist/esm/languages/prism/asm6502" {
|
2004 | const language: any;
|
2005 | export default language;
|
2006 | }
|
2007 |
|
2008 | declare module "react-syntax-highlighter/dist/esm/languages/prism/aspnet" {
|
2009 | const language: any;
|
2010 | export default language;
|
2011 | }
|
2012 |
|
2013 | declare module "react-syntax-highlighter/dist/esm/languages/prism/autohotkey" {
|
2014 | const language: any;
|
2015 | export default language;
|
2016 | }
|
2017 |
|
2018 | declare module "react-syntax-highlighter/dist/esm/languages/prism/autoit" {
|
2019 | const language: any;
|
2020 | export default language;
|
2021 | }
|
2022 |
|
2023 | declare module "react-syntax-highlighter/dist/esm/languages/prism/bash" {
|
2024 | const language: any;
|
2025 | export default language;
|
2026 | }
|
2027 |
|
2028 | declare module "react-syntax-highlighter/dist/esm/languages/prism/basic" {
|
2029 | const language: any;
|
2030 | export default language;
|
2031 | }
|
2032 |
|
2033 | declare module "react-syntax-highlighter/dist/esm/languages/prism/batch" {
|
2034 | const language: any;
|
2035 | export default language;
|
2036 | }
|
2037 |
|
2038 | declare module "react-syntax-highlighter/dist/esm/languages/prism/bbcode" {
|
2039 | const language: any;
|
2040 | export default language;
|
2041 | }
|
2042 |
|
2043 | declare module "react-syntax-highlighter/dist/esm/languages/prism/bison" {
|
2044 | const language: any;
|
2045 | export default language;
|
2046 | }
|
2047 |
|
2048 | declare module "react-syntax-highlighter/dist/esm/languages/prism/bnf" {
|
2049 | const language: any;
|
2050 | export default language;
|
2051 | }
|
2052 |
|
2053 | declare module "react-syntax-highlighter/dist/esm/languages/prism/brainfuck" {
|
2054 | const language: any;
|
2055 | export default language;
|
2056 | }
|
2057 |
|
2058 | declare module "react-syntax-highlighter/dist/esm/languages/prism/brightscript" {
|
2059 | const language: any;
|
2060 | export default language;
|
2061 | }
|
2062 |
|
2063 | declare module "react-syntax-highlighter/dist/esm/languages/prism/bro" {
|
2064 | const language: any;
|
2065 | export default language;
|
2066 | }
|
2067 |
|
2068 | declare module "react-syntax-highlighter/dist/esm/languages/prism/c" {
|
2069 | const language: any;
|
2070 | export default language;
|
2071 | }
|
2072 |
|
2073 | declare module "react-syntax-highlighter/dist/esm/languages/prism/cil" {
|
2074 | const language: any;
|
2075 | export default language;
|
2076 | }
|
2077 |
|
2078 | declare module "react-syntax-highlighter/dist/esm/languages/prism/clike" {
|
2079 | const language: any;
|
2080 | export default language;
|
2081 | }
|
2082 |
|
2083 | declare module "react-syntax-highlighter/dist/esm/languages/prism/clojure" {
|
2084 | const language: any;
|
2085 | export default language;
|
2086 | }
|
2087 |
|
2088 | declare module "react-syntax-highlighter/dist/esm/languages/prism/cmake" {
|
2089 | const language: any;
|
2090 | export default language;
|
2091 | }
|
2092 |
|
2093 | declare module "react-syntax-highlighter/dist/esm/languages/prism/coffeescript" {
|
2094 | const language: any;
|
2095 | export default language;
|
2096 | }
|
2097 |
|
2098 | declare module "react-syntax-highlighter/dist/esm/languages/prism/concurnas" {
|
2099 | const language: any;
|
2100 | export default language;
|
2101 | }
|
2102 |
|
2103 | declare module "react-syntax-highlighter/dist/esm/languages/prism/core" {
|
2104 | const language: any;
|
2105 | export default language;
|
2106 | }
|
2107 |
|
2108 | declare module "react-syntax-highlighter/dist/esm/languages/prism/cpp" {
|
2109 | const language: any;
|
2110 | export default language;
|
2111 | }
|
2112 |
|
2113 | declare module "react-syntax-highlighter/dist/esm/languages/prism/crystal" {
|
2114 | const language: any;
|
2115 | export default language;
|
2116 | }
|
2117 |
|
2118 | declare module "react-syntax-highlighter/dist/esm/languages/prism/csharp" {
|
2119 | const language: any;
|
2120 | export default language;
|
2121 | }
|
2122 |
|
2123 | declare module "react-syntax-highlighter/dist/esm/languages/prism/csp" {
|
2124 | const language: any;
|
2125 | export default language;
|
2126 | }
|
2127 |
|
2128 | declare module "react-syntax-highlighter/dist/esm/languages/prism/css-extras" {
|
2129 | const language: any;
|
2130 | export default language;
|
2131 | }
|
2132 |
|
2133 | declare module "react-syntax-highlighter/dist/esm/languages/prism/css" {
|
2134 | const language: any;
|
2135 | export default language;
|
2136 | }
|
2137 |
|
2138 | declare module "react-syntax-highlighter/dist/esm/languages/prism/cypher" {
|
2139 | const language: any;
|
2140 | export default language;
|
2141 | }
|
2142 |
|
2143 | declare module "react-syntax-highlighter/dist/esm/languages/prism/d" {
|
2144 | const language: any;
|
2145 | export default language;
|
2146 | }
|
2147 |
|
2148 | declare module "react-syntax-highlighter/dist/esm/languages/prism/dart" {
|
2149 | const language: any;
|
2150 | export default language;
|
2151 | }
|
2152 |
|
2153 | declare module "react-syntax-highlighter/dist/esm/languages/prism/dax" {
|
2154 | const language: any;
|
2155 | export default language;
|
2156 | }
|
2157 |
|
2158 | declare module "react-syntax-highlighter/dist/esm/languages/prism/dhall" {
|
2159 | const language: any;
|
2160 | export default language;
|
2161 | }
|
2162 |
|
2163 | declare module "react-syntax-highlighter/dist/esm/languages/prism/diff" {
|
2164 | const language: any;
|
2165 | export default language;
|
2166 | }
|
2167 |
|
2168 | declare module "react-syntax-highlighter/dist/esm/languages/prism/django" {
|
2169 | const language: any;
|
2170 | export default language;
|
2171 | }
|
2172 |
|
2173 | declare module "react-syntax-highlighter/dist/esm/languages/prism/dns-zone-file" {
|
2174 | const language: any;
|
2175 | export default language;
|
2176 | }
|
2177 |
|
2178 | declare module "react-syntax-highlighter/dist/esm/languages/prism/docker" {
|
2179 | const language: any;
|
2180 | export default language;
|
2181 | }
|
2182 |
|
2183 | declare module "react-syntax-highlighter/dist/esm/languages/prism/ebnf" {
|
2184 | const language: any;
|
2185 | export default language;
|
2186 | }
|
2187 |
|
2188 | declare module "react-syntax-highlighter/dist/esm/languages/prism/editorconfig" {
|
2189 | const language: any;
|
2190 | export default language;
|
2191 | }
|
2192 |
|
2193 | declare module "react-syntax-highlighter/dist/esm/languages/prism/eiffel" {
|
2194 | const language: any;
|
2195 | export default language;
|
2196 | }
|
2197 |
|
2198 | declare module "react-syntax-highlighter/dist/esm/languages/prism/ejs" {
|
2199 | const language: any;
|
2200 | export default language;
|
2201 | }
|
2202 |
|
2203 | declare module "react-syntax-highlighter/dist/esm/languages/prism/elixir" {
|
2204 | const language: any;
|
2205 | export default language;
|
2206 | }
|
2207 |
|
2208 | declare module "react-syntax-highlighter/dist/esm/languages/prism/elm" {
|
2209 | const language: any;
|
2210 | export default language;
|
2211 | }
|
2212 |
|
2213 | declare module "react-syntax-highlighter/dist/esm/languages/prism/erb" {
|
2214 | const language: any;
|
2215 | export default language;
|
2216 | }
|
2217 |
|
2218 | declare module "react-syntax-highlighter/dist/esm/languages/prism/erlang" {
|
2219 | const language: any;
|
2220 | export default language;
|
2221 | }
|
2222 |
|
2223 | declare module "react-syntax-highlighter/dist/esm/languages/prism/etlua" {
|
2224 | const language: any;
|
2225 | export default language;
|
2226 | }
|
2227 |
|
2228 | declare module "react-syntax-highlighter/dist/esm/languages/prism/excel-formula" {
|
2229 | const language: any;
|
2230 | export default language;
|
2231 | }
|
2232 |
|
2233 | declare module "react-syntax-highlighter/dist/esm/languages/prism/factor" {
|
2234 | const language: any;
|
2235 | export default language;
|
2236 | }
|
2237 |
|
2238 | declare module "react-syntax-highlighter/dist/esm/languages/prism/firestore-security-rules" {
|
2239 | const language: any;
|
2240 | export default language;
|
2241 | }
|
2242 |
|
2243 | declare module "react-syntax-highlighter/dist/esm/languages/prism/flow" {
|
2244 | const language: any;
|
2245 | export default language;
|
2246 | }
|
2247 |
|
2248 | declare module "react-syntax-highlighter/dist/esm/languages/prism/fortran" {
|
2249 | const language: any;
|
2250 | export default language;
|
2251 | }
|
2252 |
|
2253 | declare module "react-syntax-highlighter/dist/esm/languages/prism/fsharp" {
|
2254 | const language: any;
|
2255 | export default language;
|
2256 | }
|
2257 |
|
2258 | declare module "react-syntax-highlighter/dist/esm/languages/prism/ftl" {
|
2259 | const language: any;
|
2260 | export default language;
|
2261 | }
|
2262 |
|
2263 | declare module "react-syntax-highlighter/dist/esm/languages/prism/gcode" {
|
2264 | const language: any;
|
2265 | export default language;
|
2266 | }
|
2267 |
|
2268 | declare module "react-syntax-highlighter/dist/esm/languages/prism/gdscript" {
|
2269 | const language: any;
|
2270 | export default language;
|
2271 | }
|
2272 |
|
2273 | declare module "react-syntax-highlighter/dist/esm/languages/prism/gedcom" {
|
2274 | const language: any;
|
2275 | export default language;
|
2276 | }
|
2277 |
|
2278 | declare module "react-syntax-highlighter/dist/esm/languages/prism/gherkin" {
|
2279 | const language: any;
|
2280 | export default language;
|
2281 | }
|
2282 |
|
2283 | declare module "react-syntax-highlighter/dist/esm/languages/prism/git" {
|
2284 | const language: any;
|
2285 | export default language;
|
2286 | }
|
2287 |
|
2288 | declare module "react-syntax-highlighter/dist/esm/languages/prism/glsl" {
|
2289 | const language: any;
|
2290 | export default language;
|
2291 | }
|
2292 |
|
2293 | declare module "react-syntax-highlighter/dist/esm/languages/prism/gml" {
|
2294 | const language: any;
|
2295 | export default language;
|
2296 | }
|
2297 |
|
2298 | declare module "react-syntax-highlighter/dist/esm/languages/prism/go" {
|
2299 | const language: any;
|
2300 | export default language;
|
2301 | }
|
2302 |
|
2303 | declare module "react-syntax-highlighter/dist/esm/languages/prism/graphql" {
|
2304 | const language: any;
|
2305 | export default language;
|
2306 | }
|
2307 |
|
2308 | declare module "react-syntax-highlighter/dist/esm/languages/prism/groovy" {
|
2309 | const language: any;
|
2310 | export default language;
|
2311 | }
|
2312 |
|
2313 | declare module "react-syntax-highlighter/dist/esm/languages/prism/haml" {
|
2314 | const language: any;
|
2315 | export default language;
|
2316 | }
|
2317 |
|
2318 | declare module "react-syntax-highlighter/dist/esm/languages/prism/handlebars" {
|
2319 | const language: any;
|
2320 | export default language;
|
2321 | }
|
2322 |
|
2323 | declare module "react-syntax-highlighter/dist/esm/languages/prism/haskell" {
|
2324 | const language: any;
|
2325 | export default language;
|
2326 | }
|
2327 |
|
2328 | declare module "react-syntax-highlighter/dist/esm/languages/prism/haxe" {
|
2329 | const language: any;
|
2330 | export default language;
|
2331 | }
|
2332 |
|
2333 | declare module "react-syntax-highlighter/dist/esm/languages/prism/hcl" {
|
2334 | const language: any;
|
2335 | export default language;
|
2336 | }
|
2337 |
|
2338 | declare module "react-syntax-highlighter/dist/esm/languages/prism/hlsl" {
|
2339 | const language: any;
|
2340 | export default language;
|
2341 | }
|
2342 |
|
2343 | declare module "react-syntax-highlighter/dist/esm/languages/prism/hpkp" {
|
2344 | const language: any;
|
2345 | export default language;
|
2346 | }
|
2347 |
|
2348 | declare module "react-syntax-highlighter/dist/esm/languages/prism/hsts" {
|
2349 | const language: any;
|
2350 | export default language;
|
2351 | }
|
2352 |
|
2353 | declare module "react-syntax-highlighter/dist/esm/languages/prism/http" {
|
2354 | const language: any;
|
2355 | export default language;
|
2356 | }
|
2357 |
|
2358 | declare module "react-syntax-highlighter/dist/esm/languages/prism/ichigojam" {
|
2359 | const language: any;
|
2360 | export default language;
|
2361 | }
|
2362 |
|
2363 | declare module "react-syntax-highlighter/dist/esm/languages/prism/icon" {
|
2364 | const language: any;
|
2365 | export default language;
|
2366 | }
|
2367 |
|
2368 | declare module "react-syntax-highlighter/dist/esm/languages/prism/iecst" {
|
2369 | const language: any;
|
2370 | export default language;
|
2371 | }
|
2372 |
|
2373 | declare module "react-syntax-highlighter/dist/esm/languages/prism/ignore" {
|
2374 | const language: any;
|
2375 | export default language;
|
2376 | }
|
2377 |
|
2378 | declare module "react-syntax-highlighter/dist/esm/languages/prism/inform7" {
|
2379 | const language: any;
|
2380 | export default language;
|
2381 | }
|
2382 |
|
2383 | declare module "react-syntax-highlighter/dist/esm/languages/prism/ini" {
|
2384 | const language: any;
|
2385 | export default language;
|
2386 | }
|
2387 |
|
2388 | declare module "react-syntax-highlighter/dist/esm/languages/prism/io" {
|
2389 | const language: any;
|
2390 | export default language;
|
2391 | }
|
2392 |
|
2393 | declare module "react-syntax-highlighter/dist/esm/languages/prism/j" {
|
2394 | const language: any;
|
2395 | export default language;
|
2396 | }
|
2397 |
|
2398 | declare module "react-syntax-highlighter/dist/esm/languages/prism/java" {
|
2399 | const language: any;
|
2400 | export default language;
|
2401 | }
|
2402 |
|
2403 | declare module "react-syntax-highlighter/dist/esm/languages/prism/javadoc" {
|
2404 | const language: any;
|
2405 | export default language;
|
2406 | }
|
2407 |
|
2408 | declare module "react-syntax-highlighter/dist/esm/languages/prism/javadoclike" {
|
2409 | const language: any;
|
2410 | export default language;
|
2411 | }
|
2412 |
|
2413 | declare module "react-syntax-highlighter/dist/esm/languages/prism/javascript" {
|
2414 | const language: any;
|
2415 | export default language;
|
2416 | }
|
2417 |
|
2418 | declare module "react-syntax-highlighter/dist/esm/languages/prism/javastacktrace" {
|
2419 | const language: any;
|
2420 | export default language;
|
2421 | }
|
2422 |
|
2423 | declare module "react-syntax-highlighter/dist/esm/languages/prism/jolie" {
|
2424 | const language: any;
|
2425 | export default language;
|
2426 | }
|
2427 |
|
2428 | declare module "react-syntax-highlighter/dist/esm/languages/prism/jq" {
|
2429 | const language: any;
|
2430 | export default language;
|
2431 | }
|
2432 |
|
2433 | declare module "react-syntax-highlighter/dist/esm/languages/prism/js-extras" {
|
2434 | const language: any;
|
2435 | export default language;
|
2436 | }
|
2437 |
|
2438 | declare module "react-syntax-highlighter/dist/esm/languages/prism/js-templates" {
|
2439 | const language: any;
|
2440 | export default language;
|
2441 | }
|
2442 |
|
2443 | declare module "react-syntax-highlighter/dist/esm/languages/prism/js-doc" {
|
2444 | const language: any;
|
2445 | export default language;
|
2446 | }
|
2447 |
|
2448 | declare module "react-syntax-highlighter/dist/esm/languages/prism/json" {
|
2449 | const language: any;
|
2450 | export default language;
|
2451 | }
|
2452 |
|
2453 | declare module "react-syntax-highlighter/dist/esm/languages/prism/json5" {
|
2454 | const language: any;
|
2455 | export default language;
|
2456 | }
|
2457 |
|
2458 | declare module "react-syntax-highlighter/dist/esm/languages/prism/jsonp" {
|
2459 | const language: any;
|
2460 | export default language;
|
2461 | }
|
2462 |
|
2463 | declare module "react-syntax-highlighter/dist/esm/languages/prism/jsstacktrace" {
|
2464 | const language: any;
|
2465 | export default language;
|
2466 | }
|
2467 |
|
2468 | declare module "react-syntax-highlighter/dist/esm/languages/prism/jsx" {
|
2469 | const language: any;
|
2470 | export default language;
|
2471 | }
|
2472 |
|
2473 | declare module "react-syntax-highlighter/dist/esm/languages/prism/julia" {
|
2474 | const language: any;
|
2475 | export default language;
|
2476 | }
|
2477 |
|
2478 | declare module "react-syntax-highlighter/dist/esm/languages/prism/keyman" {
|
2479 | const language: any;
|
2480 | export default language;
|
2481 | }
|
2482 |
|
2483 | declare module "react-syntax-highlighter/dist/esm/languages/prism/kotlin" {
|
2484 | const language: any;
|
2485 | export default language;
|
2486 | }
|
2487 |
|
2488 | declare module "react-syntax-highlighter/dist/esm/languages/prism/latex" {
|
2489 | const language: any;
|
2490 | export default language;
|
2491 | }
|
2492 |
|
2493 | declare module "react-syntax-highlighter/dist/esm/languages/prism/latte" {
|
2494 | const language: any;
|
2495 | export default language;
|
2496 | }
|
2497 |
|
2498 | declare module "react-syntax-highlighter/dist/esm/languages/prism/less" {
|
2499 | const language: any;
|
2500 | export default language;
|
2501 | }
|
2502 |
|
2503 | declare module "react-syntax-highlighter/dist/esm/languages/prism/lilypond" {
|
2504 | const language: any;
|
2505 | export default language;
|
2506 | }
|
2507 |
|
2508 | declare module "react-syntax-highlighter/dist/esm/languages/prism/liquid" {
|
2509 | const language: any;
|
2510 | export default language;
|
2511 | }
|
2512 |
|
2513 | declare module "react-syntax-highlighter/dist/esm/languages/prism/lisp" {
|
2514 | const language: any;
|
2515 | export default language;
|
2516 | }
|
2517 |
|
2518 | declare module "react-syntax-highlighter/dist/esm/languages/prism/livescript" {
|
2519 | const language: any;
|
2520 | export default language;
|
2521 | }
|
2522 |
|
2523 | declare module "react-syntax-highlighter/dist/esm/languages/prism/llvm" {
|
2524 | const language: any;
|
2525 | export default language;
|
2526 | }
|
2527 |
|
2528 | declare module "react-syntax-highlighter/dist/esm/languages/prism/lolcode" {
|
2529 | const language: any;
|
2530 | export default language;
|
2531 | }
|
2532 |
|
2533 | declare module "react-syntax-highlighter/dist/esm/languages/prism/lua" {
|
2534 | const language: any;
|
2535 | export default language;
|
2536 | }
|
2537 |
|
2538 | declare module "react-syntax-highlighter/dist/esm/languages/prism/makefile" {
|
2539 | const language: any;
|
2540 | export default language;
|
2541 | }
|
2542 |
|
2543 | declare module "react-syntax-highlighter/dist/esm/languages/prism/markdown" {
|
2544 | const language: any;
|
2545 | export default language;
|
2546 | }
|
2547 |
|
2548 | declare module "react-syntax-highlighter/dist/esm/languages/prism/markup-templating" {
|
2549 | const language: any;
|
2550 | export default language;
|
2551 | }
|
2552 |
|
2553 | declare module "react-syntax-highlighter/dist/esm/languages/prism/markup" {
|
2554 | const language: any;
|
2555 | export default language;
|
2556 | }
|
2557 |
|
2558 | declare module "react-syntax-highlighter/dist/esm/languages/prism/matlab" {
|
2559 | const language: any;
|
2560 | export default language;
|
2561 | }
|
2562 |
|
2563 | declare module "react-syntax-highlighter/dist/esm/languages/prism/mel" {
|
2564 | const language: any;
|
2565 | export default language;
|
2566 | }
|
2567 |
|
2568 | declare module "react-syntax-highlighter/dist/esm/languages/prism/mizar" {
|
2569 | const language: any;
|
2570 | export default language;
|
2571 | }
|
2572 |
|
2573 | declare module "react-syntax-highlighter/dist/esm/languages/prism/monkey" {
|
2574 | const language: any;
|
2575 | export default language;
|
2576 | }
|
2577 |
|
2578 | declare module "react-syntax-highlighter/dist/esm/languages/prism/moonscript" {
|
2579 | const language: any;
|
2580 | export default language;
|
2581 | }
|
2582 |
|
2583 | declare module "react-syntax-highlighter/dist/esm/languages/prism/n1ql" {
|
2584 | const language: any;
|
2585 | export default language;
|
2586 | }
|
2587 |
|
2588 | declare module "react-syntax-highlighter/dist/esm/languages/prism/n4js" {
|
2589 | const language: any;
|
2590 | export default language;
|
2591 | }
|
2592 |
|
2593 | declare module "react-syntax-highlighter/dist/esm/languages/prism/nand2tetris-hdl" {
|
2594 | const language: any;
|
2595 | export default language;
|
2596 | }
|
2597 |
|
2598 | declare module "react-syntax-highlighter/dist/esm/languages/prism/nasm" {
|
2599 | const language: any;
|
2600 | export default language;
|
2601 | }
|
2602 |
|
2603 | declare module "react-syntax-highlighter/dist/esm/languages/prism/neon" {
|
2604 | const language: any;
|
2605 | export default language;
|
2606 | }
|
2607 |
|
2608 | declare module "react-syntax-highlighter/dist/esm/languages/prism/nginx" {
|
2609 | const language: any;
|
2610 | export default language;
|
2611 | }
|
2612 |
|
2613 | declare module "react-syntax-highlighter/dist/esm/languages/prism/nim" {
|
2614 | const language: any;
|
2615 | export default language;
|
2616 | }
|
2617 |
|
2618 | declare module "react-syntax-highlighter/dist/esm/languages/prism/nix" {
|
2619 | const language: any;
|
2620 | export default language;
|
2621 | }
|
2622 |
|
2623 | declare module "react-syntax-highlighter/dist/esm/languages/prism/nsis" {
|
2624 | const language: any;
|
2625 | export default language;
|
2626 | }
|
2627 |
|
2628 | declare module "react-syntax-highlighter/dist/esm/languages/prism/objectivec" {
|
2629 | const language: any;
|
2630 | export default language;
|
2631 | }
|
2632 |
|
2633 | declare module "react-syntax-highlighter/dist/esm/languages/prism/ocaml" {
|
2634 | const language: any;
|
2635 | export default language;
|
2636 | }
|
2637 |
|
2638 | declare module "react-syntax-highlighter/dist/esm/languages/prism/opencl" {
|
2639 | const language: any;
|
2640 | export default language;
|
2641 | }
|
2642 |
|
2643 | declare module "react-syntax-highlighter/dist/esm/languages/prism/oz" {
|
2644 | const language: any;
|
2645 | export default language;
|
2646 | }
|
2647 |
|
2648 | declare module "react-syntax-highlighter/dist/esm/languages/prism/parigp" {
|
2649 | const language: any;
|
2650 | export default language;
|
2651 | }
|
2652 |
|
2653 | declare module "react-syntax-highlighter/dist/esm/languages/prism/parser" {
|
2654 | const language: any;
|
2655 | export default language;
|
2656 | }
|
2657 |
|
2658 | declare module "react-syntax-highlighter/dist/esm/languages/prism/pascal" {
|
2659 | const language: any;
|
2660 | export default language;
|
2661 | }
|
2662 |
|
2663 | declare module "react-syntax-highlighter/dist/esm/languages/prism/pascaligo" {
|
2664 | const language: any;
|
2665 | export default language;
|
2666 | }
|
2667 |
|
2668 | declare module "react-syntax-highlighter/dist/esm/languages/prism/pcaxis" {
|
2669 | const language: any;
|
2670 | export default language;
|
2671 | }
|
2672 |
|
2673 | declare module "react-syntax-highlighter/dist/esm/languages/prism/peoplecode" {
|
2674 | const language: any;
|
2675 | export default language;
|
2676 | }
|
2677 |
|
2678 | declare module "react-syntax-highlighter/dist/esm/languages/prism/perl" {
|
2679 | const language: any;
|
2680 | export default language;
|
2681 | }
|
2682 |
|
2683 | declare module "react-syntax-highlighter/dist/esm/languages/prism/php-extras" {
|
2684 | const language: any;
|
2685 | export default language;
|
2686 | }
|
2687 |
|
2688 | declare module "react-syntax-highlighter/dist/esm/languages/prism/php" {
|
2689 | const language: any;
|
2690 | export default language;
|
2691 | }
|
2692 |
|
2693 | declare module "react-syntax-highlighter/dist/esm/languages/prism/plsql" {
|
2694 | const language: any;
|
2695 | export default language;
|
2696 | }
|
2697 |
|
2698 | declare module "react-syntax-highlighter/dist/esm/languages/prism/powerquery" {
|
2699 | const language: any;
|
2700 | export default language;
|
2701 | }
|
2702 |
|
2703 | declare module "react-syntax-highlighter/dist/esm/languages/prism/powershell" {
|
2704 | const language: any;
|
2705 | export default language;
|
2706 | }
|
2707 |
|
2708 | declare module "react-syntax-highlighter/dist/esm/languages/prism/processing" {
|
2709 | const language: any;
|
2710 | export default language;
|
2711 | }
|
2712 |
|
2713 | declare module "react-syntax-highlighter/dist/esm/languages/prism/prolog" {
|
2714 | const language: any;
|
2715 | export default language;
|
2716 | }
|
2717 |
|
2718 | declare module "react-syntax-highlighter/dist/esm/languages/prism/properties" {
|
2719 | const language: any;
|
2720 | export default language;
|
2721 | }
|
2722 |
|
2723 | declare module "react-syntax-highlighter/dist/esm/languages/prism/protobuf" {
|
2724 | const language: any;
|
2725 | export default language;
|
2726 | }
|
2727 |
|
2728 | declare module "react-syntax-highlighter/dist/esm/languages/prism/pug" {
|
2729 | const language: any;
|
2730 | export default language;
|
2731 | }
|
2732 |
|
2733 | declare module "react-syntax-highlighter/dist/esm/languages/prism/puppet" {
|
2734 | const language: any;
|
2735 | export default language;
|
2736 | }
|
2737 |
|
2738 | declare module "react-syntax-highlighter/dist/esm/languages/prism/pure" {
|
2739 | const language: any;
|
2740 | export default language;
|
2741 | }
|
2742 |
|
2743 | declare module "react-syntax-highlighter/dist/esm/languages/prism/purebasic" {
|
2744 | const language: any;
|
2745 | export default language;
|
2746 | }
|
2747 |
|
2748 | declare module "react-syntax-highlighter/dist/esm/languages/prism/python" {
|
2749 | const language: any;
|
2750 | export default language;
|
2751 | }
|
2752 |
|
2753 | declare module "react-syntax-highlighter/dist/esm/languages/prism/q" {
|
2754 | const language: any;
|
2755 | export default language;
|
2756 | }
|
2757 |
|
2758 | declare module "react-syntax-highlighter/dist/esm/languages/prism/qml" {
|
2759 | const language: any;
|
2760 | export default language;
|
2761 | }
|
2762 |
|
2763 | declare module "react-syntax-highlighter/dist/esm/languages/prism/qore" {
|
2764 | const language: any;
|
2765 | export default language;
|
2766 | }
|
2767 |
|
2768 | declare module "react-syntax-highlighter/dist/esm/languages/prism/r" {
|
2769 | const language: any;
|
2770 | export default language;
|
2771 | }
|
2772 |
|
2773 | declare module "react-syntax-highlighter/dist/esm/languages/prism/racket" {
|
2774 | const language: any;
|
2775 | export default language;
|
2776 | }
|
2777 |
|
2778 | declare module "react-syntax-highlighter/dist/esm/languages/prism/reason" {
|
2779 | const language: any;
|
2780 | export default language;
|
2781 | }
|
2782 |
|
2783 | declare module "react-syntax-highlighter/dist/esm/languages/prism/regex" {
|
2784 | const language: any;
|
2785 | export default language;
|
2786 | }
|
2787 |
|
2788 | declare module "react-syntax-highlighter/dist/esm/languages/prism/renpy" {
|
2789 | const language: any;
|
2790 | export default language;
|
2791 | }
|
2792 |
|
2793 | declare module "react-syntax-highlighter/dist/esm/languages/prism/rest" {
|
2794 | const language: any;
|
2795 | export default language;
|
2796 | }
|
2797 |
|
2798 | declare module "react-syntax-highlighter/dist/esm/languages/prism/rip" {
|
2799 | const language: any;
|
2800 | export default language;
|
2801 | }
|
2802 |
|
2803 | declare module "react-syntax-highlighter/dist/esm/languages/prism/roboconf" {
|
2804 | const language: any;
|
2805 | export default language;
|
2806 | }
|
2807 |
|
2808 | declare module "react-syntax-highlighter/dist/esm/languages/prism/robotframework" {
|
2809 | const language: any;
|
2810 | export default language;
|
2811 | }
|
2812 |
|
2813 | declare module "react-syntax-highlighter/dist/esm/languages/prism/ruby" {
|
2814 | const language: any;
|
2815 | export default language;
|
2816 | }
|
2817 |
|
2818 | declare module "react-syntax-highlighter/dist/esm/languages/prism/rust" {
|
2819 | const language: any;
|
2820 | export default language;
|
2821 | }
|
2822 |
|
2823 | declare module "react-syntax-highlighter/dist/esm/languages/prism/sas" {
|
2824 | const language: any;
|
2825 | export default language;
|
2826 | }
|
2827 |
|
2828 | declare module "react-syntax-highlighter/dist/esm/languages/prism/sass" {
|
2829 | const language: any;
|
2830 | export default language;
|
2831 | }
|
2832 |
|
2833 | declare module "react-syntax-highlighter/dist/esm/languages/prism/scala" {
|
2834 | const language: any;
|
2835 | export default language;
|
2836 | }
|
2837 |
|
2838 | declare module "react-syntax-highlighter/dist/esm/languages/prism/scheme" {
|
2839 | const language: any;
|
2840 | export default language;
|
2841 | }
|
2842 |
|
2843 | declare module "react-syntax-highlighter/dist/esm/languages/prism/scss" {
|
2844 | const language: any;
|
2845 | export default language;
|
2846 | }
|
2847 |
|
2848 | declare module "react-syntax-highlighter/dist/esm/languages/prism/shell-session" {
|
2849 | const language: any;
|
2850 | export default language;
|
2851 | }
|
2852 |
|
2853 | declare module "react-syntax-highlighter/dist/esm/languages/prism/smali" {
|
2854 | const language: any;
|
2855 | export default language;
|
2856 | }
|
2857 |
|
2858 | declare module "react-syntax-highlighter/dist/esm/languages/prism/smalltalk" {
|
2859 | const language: any;
|
2860 | export default language;
|
2861 | }
|
2862 |
|
2863 | declare module "react-syntax-highlighter/dist/esm/languages/prism/smarty" {
|
2864 | const language: any;
|
2865 | export default language;
|
2866 | }
|
2867 |
|
2868 | declare module "react-syntax-highlighter/dist/esm/languages/prism/solidity" {
|
2869 | const language: any;
|
2870 | export default language;
|
2871 | }
|
2872 |
|
2873 | declare module "react-syntax-highlighter/dist/esm/languages/prism/solution-file" {
|
2874 | const language: any;
|
2875 | export default language;
|
2876 | }
|
2877 |
|
2878 | declare module "react-syntax-highlighter/dist/esm/languages/prism/soy" {
|
2879 | const language: any;
|
2880 | export default language;
|
2881 | }
|
2882 |
|
2883 | declare module "react-syntax-highlighter/dist/esm/languages/prism/sparql" {
|
2884 | const language: any;
|
2885 | export default language;
|
2886 | }
|
2887 |
|
2888 | declare module "react-syntax-highlighter/dist/esm/languages/prism/splunk-spl" {
|
2889 | const language: any;
|
2890 | export default language;
|
2891 | }
|
2892 |
|
2893 | declare module "react-syntax-highlighter/dist/esm/languages/prism/sqf" {
|
2894 | const language: any;
|
2895 | export default language;
|
2896 | }
|
2897 |
|
2898 | declare module "react-syntax-highlighter/dist/esm/languages/prism/sql" {
|
2899 | const language: any;
|
2900 | export default language;
|
2901 | }
|
2902 |
|
2903 | declare module "react-syntax-highlighter/dist/esm/languages/prism/stylus" {
|
2904 | const language: any;
|
2905 | export default language;
|
2906 | }
|
2907 |
|
2908 | declare module "react-syntax-highlighter/dist/esm/languages/prism/swift" {
|
2909 | const language: any;
|
2910 | export default language;
|
2911 | }
|
2912 |
|
2913 | declare module "react-syntax-highlighter/dist/esm/languages/prism/t4-cs" {
|
2914 | const language: any;
|
2915 | export default language;
|
2916 | }
|
2917 |
|
2918 | declare module "react-syntax-highlighter/dist/esm/languages/prism/t4-templating" {
|
2919 | const language: any;
|
2920 | export default language;
|
2921 | }
|
2922 |
|
2923 | declare module "react-syntax-highlighter/dist/esm/languages/prism/t4-vb" {
|
2924 | const language: any;
|
2925 | export default language;
|
2926 | }
|
2927 |
|
2928 | declare module "react-syntax-highlighter/dist/esm/languages/prism/tap" {
|
2929 | const language: any;
|
2930 | export default language;
|
2931 | }
|
2932 |
|
2933 | declare module "react-syntax-highlighter/dist/esm/languages/prism/tcl" {
|
2934 | const language: any;
|
2935 | export default language;
|
2936 | }
|
2937 |
|
2938 | declare module "react-syntax-highlighter/dist/esm/languages/prism/textile" {
|
2939 | const language: any;
|
2940 | export default language;
|
2941 | }
|
2942 |
|
2943 | declare module "react-syntax-highlighter/dist/esm/languages/prism/toml" {
|
2944 | const language: any;
|
2945 | export default language;
|
2946 | }
|
2947 |
|
2948 | declare module "react-syntax-highlighter/dist/esm/languages/prism/tsx" {
|
2949 | const language: any;
|
2950 | export default language;
|
2951 | }
|
2952 |
|
2953 | declare module "react-syntax-highlighter/dist/esm/languages/prism/tt2" {
|
2954 | const language: any;
|
2955 | export default language;
|
2956 | }
|
2957 |
|
2958 | declare module "react-syntax-highlighter/dist/esm/languages/prism/turtle" {
|
2959 | const language: any;
|
2960 | export default language;
|
2961 | }
|
2962 |
|
2963 | declare module "react-syntax-highlighter/dist/esm/languages/prism/twig" {
|
2964 | const language: any;
|
2965 | export default language;
|
2966 | }
|
2967 |
|
2968 | declare module "react-syntax-highlighter/dist/esm/languages/prism/typescript" {
|
2969 | const language: any;
|
2970 | export default language;
|
2971 | }
|
2972 |
|
2973 | declare module "react-syntax-highlighter/dist/esm/languages/prism/unrealscript" {
|
2974 | const language: any;
|
2975 | export default language;
|
2976 | }
|
2977 |
|
2978 | declare module "react-syntax-highlighter/dist/esm/languages/prism/vala" {
|
2979 | const language: any;
|
2980 | export default language;
|
2981 | }
|
2982 |
|
2983 | declare module "react-syntax-highlighter/dist/esm/languages/prism/vbnet" {
|
2984 | const language: any;
|
2985 | export default language;
|
2986 | }
|
2987 |
|
2988 | declare module "react-syntax-highlighter/dist/esm/languages/prism/velocity" {
|
2989 | const language: any;
|
2990 | export default language;
|
2991 | }
|
2992 |
|
2993 | declare module "react-syntax-highlighter/dist/esm/languages/prism/verilog" {
|
2994 | const language: any;
|
2995 | export default language;
|
2996 | }
|
2997 |
|
2998 | declare module "react-syntax-highlighter/dist/esm/languages/prism/vhdl" {
|
2999 | const language: any;
|
3000 | export default language;
|
3001 | }
|
3002 |
|
3003 | declare module "react-syntax-highlighter/dist/esm/languages/prism/vim" {
|
3004 | const language: any;
|
3005 | export default language;
|
3006 | }
|
3007 |
|
3008 | declare module "react-syntax-highlighter/dist/esm/languages/prism/visual-basic" {
|
3009 | const language: any;
|
3010 | export default language;
|
3011 | }
|
3012 |
|
3013 | declare module "react-syntax-highlighter/dist/esm/languages/prism/warpscript" {
|
3014 | const language: any;
|
3015 | export default language;
|
3016 | }
|
3017 |
|
3018 | declare module "react-syntax-highlighter/dist/esm/languages/prism/wasm" {
|
3019 | const language: any;
|
3020 | export default language;
|
3021 | }
|
3022 |
|
3023 | declare module "react-syntax-highlighter/dist/esm/languages/prism/wiki" {
|
3024 | const language: any;
|
3025 | export default language;
|
3026 | }
|
3027 |
|
3028 | declare module "react-syntax-highlighter/dist/esm/languages/prism/xeora" {
|
3029 | const language: any;
|
3030 | export default language;
|
3031 | }
|
3032 |
|
3033 | declare module "react-syntax-highlighter/dist/esm/languages/prism/xml-doc" {
|
3034 | const language: any;
|
3035 | export default language;
|
3036 | }
|
3037 |
|
3038 | declare module "react-syntax-highlighter/dist/esm/languages/prism/xojo" {
|
3039 | const language: any;
|
3040 | export default language;
|
3041 | }
|
3042 |
|
3043 | declare module "react-syntax-highlighter/dist/esm/languages/prism/xquery" {
|
3044 | const language: any;
|
3045 | export default language;
|
3046 | }
|
3047 |
|
3048 | declare module "react-syntax-highlighter/dist/esm/languages/prism/yaml" {
|
3049 | const language: any;
|
3050 | export default language;
|
3051 | }
|
3052 |
|
3053 | declare module "react-syntax-highlighter/dist/esm/languages/prism/yang" {
|
3054 | const language: any;
|
3055 | export default language;
|
3056 | }
|
3057 |
|
3058 | declare module "react-syntax-highlighter/dist/esm/languages/prism/zig" {
|
3059 | const language: any;
|
3060 | export default language;
|
3061 | }
|
3062 |
|
3063 |
|
3064 |
|
3065 | declare module "react-syntax-highlighter/dist/cjs/default-highlight" {
|
3066 | import * as React from "react";
|
3067 | import { SyntaxHighlighterProps } from "react-syntax-highlighter";
|
3068 | export default class SyntaxHighlighter extends React.Component<SyntaxHighlighterProps> {
|
3069 | static supportedLanguages: string[];
|
3070 | }
|
3071 | }
|
3072 |
|
3073 | declare module "react-syntax-highlighter/dist/cjs/light-async" {
|
3074 | import * as React from "react";
|
3075 | import { SyntaxHighlighterProps } from "react-syntax-highlighter";
|
3076 | export default class SyntaxHighlighter extends React.Component<SyntaxHighlighterProps> {
|
3077 | static registerLanguage(name: string, func: any): void;
|
3078 | }
|
3079 | }
|
3080 |
|
3081 | declare module "react-syntax-highlighter/dist/cjs/light" {
|
3082 | import * as React from "react";
|
3083 | import { SyntaxHighlighterProps } from "react-syntax-highlighter";
|
3084 | export default class SyntaxHighlighter extends React.Component<SyntaxHighlighterProps> {
|
3085 | static registerLanguage(name: string, func: any): void;
|
3086 | }
|
3087 | }
|
3088 |
|
3089 | declare module "react-syntax-highlighter/dist/cjs/prism-async-light" {
|
3090 | import * as React from "react";
|
3091 | import { SyntaxHighlighterProps } from "react-syntax-highlighter";
|
3092 | export default class SyntaxHighlighter extends React.Component<SyntaxHighlighterProps> {
|
3093 | static registerLanguage(name: string, func: any): void;
|
3094 | }
|
3095 | }
|
3096 |
|
3097 | declare module "react-syntax-highlighter/dist/cjs/prism-async" {
|
3098 | import * as React from "react";
|
3099 | import { SyntaxHighlighterProps } from "react-syntax-highlighter";
|
3100 | export default class SyntaxHighlighter extends React.Component<SyntaxHighlighterProps> {}
|
3101 | }
|
3102 |
|
3103 | declare module "react-syntax-highlighter/dist/cjs/prism-light" {
|
3104 | import * as React from "react";
|
3105 | import { SyntaxHighlighterProps } from "react-syntax-highlighter";
|
3106 | export default class SyntaxHighlighter extends React.Component<SyntaxHighlighterProps> {
|
3107 | static registerLanguage(name: string, func: any): void;
|
3108 | static alias(name: string, alias: string | string[]): void;
|
3109 | static alias(aliases: Record<string, string | string[]>): void;
|
3110 | }
|
3111 | }
|
3112 |
|
3113 | declare module "react-syntax-highlighter/dist/cjs/prism" {
|
3114 | import * as React from "react";
|
3115 | import { SyntaxHighlighterProps } from "react-syntax-highlighter";
|
3116 | export default class SyntaxHighlighter extends React.Component<SyntaxHighlighterProps> {
|
3117 | static supportedLanguages: string[];
|
3118 | }
|
3119 | }
|
3120 |
|
3121 | declare module "react-syntax-highlighter/dist/cjs/create-element" {
|
3122 | import * as React from "react";
|
3123 | import { createElementProps } from "react-syntax-highlighter";
|
3124 | function createElement(props: createElementProps): React.ReactNode;
|
3125 | export default createElement;
|
3126 | }
|
3127 |
|
3128 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs" {
|
3129 | export { default as a11yDark } from "react-syntax-highlighter/dist/cjs/styles/hljs/a11y-dark";
|
3130 | export { default as a11yLight } from "react-syntax-highlighter/dist/cjs/styles/hljs/a11y-light";
|
3131 | export { default as agate } from "react-syntax-highlighter/dist/cjs/styles/hljs/agate";
|
3132 | export { default as anOldHope } from "react-syntax-highlighter/dist/cjs/styles/hljs/an-old-hope";
|
3133 | export { default as androidstudio } from "react-syntax-highlighter/dist/cjs/styles/hljs/androidstudio";
|
3134 | export { default as arduinoLight } from "react-syntax-highlighter/dist/cjs/styles/hljs/arduino-light";
|
3135 | export { default as arta } from "react-syntax-highlighter/dist/cjs/styles/hljs/arta";
|
3136 | export { default as ascetic } from "react-syntax-highlighter/dist/cjs/styles/hljs/ascetic";
|
3137 | export { default as atelierCaveDark } from "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-cave-dark";
|
3138 | export { default as atelierCaveLight } from "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-cave-light";
|
3139 | export { default as atelierDuneDark } from "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-dune-dark";
|
3140 | export { default as atelierDuneLight } from "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-dune-light";
|
3141 | export { default as atelierEstuaryDark } from "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-estuary-dark";
|
3142 | export { default as atelierEstuaryLight } from "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-estuary-light";
|
3143 | export { default as atelierForestDark } from "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-forest-dark";
|
3144 | export { default as atelierForestLight } from "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-forest-light";
|
3145 | export { default as atelierHeathDark } from "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-heath-dark";
|
3146 | export { default as atelierHeathLight } from "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-heath-light";
|
3147 | export { default as atelierLakesideDark } from "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-lakeside-dark";
|
3148 | export { default as atelierLakesideLight } from "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-lakeside-light";
|
3149 | export { default as atelierPlateauDark } from "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-plateau-dark";
|
3150 | export { default as atelierPlateauLight } from "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-plateau-light";
|
3151 | export { default as atelierSavannaDark } from "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-savanna-dark";
|
3152 | export { default as atelierSavannaLight } from "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-savanna-light";
|
3153 | export { default as atelierSeasideDark } from "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-seaside-dark";
|
3154 | export { default as atelierSeasideLight } from "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-seaside-light";
|
3155 | export { default as atelierSulphurpoolDark } from "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-sulphurpool-dark";
|
3156 | export { default as atelierSulphurpoolLight } from "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-sulphurpool-light";
|
3157 | export { default as atomOneDarkReasonable } from "react-syntax-highlighter/dist/cjs/styles/hljs/atom-one-dark-reasonable";
|
3158 | export { default as atomOneDark } from "react-syntax-highlighter/dist/cjs/styles/hljs/atom-one-dark";
|
3159 | export { default as atomOneLight } from "react-syntax-highlighter/dist/cjs/styles/hljs/atom-one-light";
|
3160 | export { default as brownPaper } from "react-syntax-highlighter/dist/cjs/styles/hljs/brown-paper";
|
3161 | export { default as codepenEmbed } from "react-syntax-highlighter/dist/cjs/styles/hljs/codepen-embed";
|
3162 | export { default as colorBrewer } from "react-syntax-highlighter/dist/cjs/styles/hljs/color-brewer";
|
3163 | export { default as darcula } from "react-syntax-highlighter/dist/cjs/styles/hljs/darcula";
|
3164 | export { default as dark } from "react-syntax-highlighter/dist/cjs/styles/hljs/dark";
|
3165 | export { default as darkula } from "react-syntax-highlighter/dist/cjs/styles/hljs/darkula";
|
3166 | export { default as defaultStyle } from "react-syntax-highlighter/dist/cjs/styles/hljs/default-style";
|
3167 | export { default as docco } from "react-syntax-highlighter/dist/cjs/styles/hljs/docco";
|
3168 | export { default as dracula } from "react-syntax-highlighter/dist/cjs/styles/hljs/dracula";
|
3169 | export { default as far } from "react-syntax-highlighter/dist/cjs/styles/hljs/far";
|
3170 | export { default as foundation } from "react-syntax-highlighter/dist/cjs/styles/hljs/foundation";
|
3171 | export { default as githubGist } from "react-syntax-highlighter/dist/cjs/styles/hljs/github-gist";
|
3172 | export { default as github } from "react-syntax-highlighter/dist/cjs/styles/hljs/github";
|
3173 | export { default as gml } from "react-syntax-highlighter/dist/cjs/styles/hljs/gml";
|
3174 | export { default as googlecode } from "react-syntax-highlighter/dist/cjs/styles/hljs/googlecode";
|
3175 | export { default as gradientDark } from "react-syntax-highlighter/dist/cjs/styles/hljs/gradient-dark";
|
3176 | export { default as grayscale } from "react-syntax-highlighter/dist/cjs/styles/hljs/grayscale";
|
3177 | export { default as gruvboxDark } from "react-syntax-highlighter/dist/cjs/styles/hljs/gruvbox-dark";
|
3178 | export { default as gruvboxLight } from "react-syntax-highlighter/dist/cjs/styles/hljs/gruvbox-light";
|
3179 | export { default as hopscotch } from "react-syntax-highlighter/dist/cjs/styles/hljs/hopscotch";
|
3180 | export { default as hybrid } from "react-syntax-highlighter/dist/cjs/styles/hljs/hybrid";
|
3181 | export { default as idea } from "react-syntax-highlighter/dist/cjs/styles/hljs/idea";
|
3182 | export { default as irBlack } from "react-syntax-highlighter/dist/cjs/styles/hljs/ir-black";
|
3183 | export { default as isblEditorDark } from "react-syntax-highlighter/dist/cjs/styles/hljs/isbl-editor-dark";
|
3184 | export { default as isblEditorLight } from "react-syntax-highlighter/dist/cjs/styles/hljs/isbl-editor-light";
|
3185 | export { default as kimbieDark } from "react-syntax-highlighter/dist/cjs/styles/hljs/kimbie.dark";
|
3186 | export { default as kimbieLight } from "react-syntax-highlighter/dist/cjs/styles/hljs/kimbie.light";
|
3187 | export { default as lightfair } from "react-syntax-highlighter/dist/cjs/styles/hljs/lightfair";
|
3188 | export { default as lioshi } from "react-syntax-highlighter/dist/cjs/styles/hljs/lioshi";
|
3189 | export { default as magula } from "react-syntax-highlighter/dist/cjs/styles/hljs/magula";
|
3190 | export { default as monoBlue } from "react-syntax-highlighter/dist/cjs/styles/hljs/mono-blue";
|
3191 | export { default as monokaiSublime } from "react-syntax-highlighter/dist/cjs/styles/hljs/monokai-sublime";
|
3192 | export { default as monokai } from "react-syntax-highlighter/dist/cjs/styles/hljs/monokai";
|
3193 | export { default as nightOwl } from "react-syntax-highlighter/dist/cjs/styles/hljs/night-owl";
|
3194 | export { default as nnfxDark } from "react-syntax-highlighter/dist/cjs/styles/hljs/nnfx-dark";
|
3195 | export { default as nnfx } from "react-syntax-highlighter/dist/cjs/styles/hljs/nnfx";
|
3196 | export { default as nord } from "react-syntax-highlighter/dist/cjs/styles/hljs/nord";
|
3197 | export { default as obsidian } from "react-syntax-highlighter/dist/cjs/styles/hljs/obsidian";
|
3198 | export { default as ocean } from "react-syntax-highlighter/dist/cjs/styles/hljs/ocean";
|
3199 | export { default as paraisoDark } from "react-syntax-highlighter/dist/cjs/styles/hljs/paraiso-dark";
|
3200 | export { default as paraisoLight } from "react-syntax-highlighter/dist/cjs/styles/hljs/paraiso-light";
|
3201 | export { default as pojoaque } from "react-syntax-highlighter/dist/cjs/styles/hljs/pojoaque";
|
3202 | export { default as purebasic } from "react-syntax-highlighter/dist/cjs/styles/hljs/purebasic";
|
3203 | export { default as qtcreatorDark } from "react-syntax-highlighter/dist/cjs/styles/hljs/qtcreator_dark";
|
3204 | export { default as qtcreatorLight } from "react-syntax-highlighter/dist/cjs/styles/hljs/qtcreator_light";
|
3205 | export { default as railscasts } from "react-syntax-highlighter/dist/cjs/styles/hljs/railscasts";
|
3206 | export { default as rainbow } from "react-syntax-highlighter/dist/cjs/styles/hljs/rainbow";
|
3207 | export { default as routeros } from "react-syntax-highlighter/dist/cjs/styles/hljs/routeros";
|
3208 | export { default as schoolBook } from "react-syntax-highlighter/dist/cjs/styles/hljs/school-book";
|
3209 | export { default as shadesOfPurple } from "react-syntax-highlighter/dist/cjs/styles/hljs/shades-of-purple";
|
3210 | export { default as solarizedDark } from "react-syntax-highlighter/dist/cjs/styles/hljs/solarized-dark";
|
3211 | export { default as solarizedLight } from "react-syntax-highlighter/dist/cjs/styles/hljs/solarized-light";
|
3212 | export { default as srcery } from "react-syntax-highlighter/dist/cjs/styles/hljs/srcery";
|
3213 | export { default as stackoverflowDark } from "react-syntax-highlighter/dist/cjs/styles/hljs/stackoverflow-dark";
|
3214 | export { default as stackoverflowLight } from "react-syntax-highlighter/dist/cjs/styles/hljs/stackoverflow-light";
|
3215 | export { default as sunburst } from "react-syntax-highlighter/dist/cjs/styles/hljs/sunburst";
|
3216 | export { default as tomorrowNightBlue } from "react-syntax-highlighter/dist/cjs/styles/hljs/tomorrow-night-blue";
|
3217 | export { default as tomorrowNightBright } from "react-syntax-highlighter/dist/cjs/styles/hljs/tomorrow-night-bright";
|
3218 | export { default as tomorrowNightEighties } from "react-syntax-highlighter/dist/cjs/styles/hljs/tomorrow-night-eighties";
|
3219 | export { default as tomorrowNight } from "react-syntax-highlighter/dist/cjs/styles/hljs/tomorrow-night";
|
3220 | export { default as tomorrow } from "react-syntax-highlighter/dist/cjs/styles/hljs/tomorrow";
|
3221 | export { default as vs } from "react-syntax-highlighter/dist/cjs/styles/hljs/vs";
|
3222 | export { default as vs2015 } from "react-syntax-highlighter/dist/cjs/styles/hljs/vs2015";
|
3223 | export { default as xcode } from "react-syntax-highlighter/dist/cjs/styles/hljs/xcode";
|
3224 | export { default as xt256 } from "react-syntax-highlighter/dist/cjs/styles/hljs/xt256";
|
3225 | export { default as zenburn } from "react-syntax-highlighter/dist/cjs/styles/hljs/zenburn";
|
3226 | }
|
3227 |
|
3228 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/a11y-dark" {
|
3229 | const style: { [key: string]: React.CSSProperties };
|
3230 | export default style;
|
3231 | }
|
3232 |
|
3233 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/a11y-light" {
|
3234 | const style: { [key: string]: React.CSSProperties };
|
3235 | export default style;
|
3236 | }
|
3237 |
|
3238 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/agate" {
|
3239 | const style: { [key: string]: React.CSSProperties };
|
3240 | export default style;
|
3241 | }
|
3242 |
|
3243 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/an-old-hope" {
|
3244 | const style: { [key: string]: React.CSSProperties };
|
3245 | export default style;
|
3246 | }
|
3247 |
|
3248 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/androidstudio" {
|
3249 | const style: { [key: string]: React.CSSProperties };
|
3250 | export default style;
|
3251 | }
|
3252 |
|
3253 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/arduino-light" {
|
3254 | const style: { [key: string]: React.CSSProperties };
|
3255 | export default style;
|
3256 | }
|
3257 |
|
3258 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/arta" {
|
3259 | const style: { [key: string]: React.CSSProperties };
|
3260 | export default style;
|
3261 | }
|
3262 |
|
3263 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/ascetic" {
|
3264 | const style: { [key: string]: React.CSSProperties };
|
3265 | export default style;
|
3266 | }
|
3267 |
|
3268 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-cave-dark" {
|
3269 | const style: { [key: string]: React.CSSProperties };
|
3270 | export default style;
|
3271 | }
|
3272 |
|
3273 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-cave-light" {
|
3274 | const style: { [key: string]: React.CSSProperties };
|
3275 | export default style;
|
3276 | }
|
3277 |
|
3278 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-dune-dark" {
|
3279 | const style: { [key: string]: React.CSSProperties };
|
3280 | export default style;
|
3281 | }
|
3282 |
|
3283 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-dune-light" {
|
3284 | const style: { [key: string]: React.CSSProperties };
|
3285 | export default style;
|
3286 | }
|
3287 |
|
3288 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-estuary-dark" {
|
3289 | const style: { [key: string]: React.CSSProperties };
|
3290 | export default style;
|
3291 | }
|
3292 |
|
3293 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-estuary-light" {
|
3294 | const style: { [key: string]: React.CSSProperties };
|
3295 | export default style;
|
3296 | }
|
3297 |
|
3298 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-forest-dark" {
|
3299 | const style: { [key: string]: React.CSSProperties };
|
3300 | export default style;
|
3301 | }
|
3302 |
|
3303 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-forest-light" {
|
3304 | const style: { [key: string]: React.CSSProperties };
|
3305 | export default style;
|
3306 | }
|
3307 |
|
3308 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-heath-dark" {
|
3309 | const style: { [key: string]: React.CSSProperties };
|
3310 | export default style;
|
3311 | }
|
3312 |
|
3313 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-heath-light" {
|
3314 | const style: { [key: string]: React.CSSProperties };
|
3315 | export default style;
|
3316 | }
|
3317 |
|
3318 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-lakeside-dark" {
|
3319 | const style: { [key: string]: React.CSSProperties };
|
3320 | export default style;
|
3321 | }
|
3322 |
|
3323 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-lakeside-light" {
|
3324 | const style: { [key: string]: React.CSSProperties };
|
3325 | export default style;
|
3326 | }
|
3327 |
|
3328 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-plateau-dark" {
|
3329 | const style: { [key: string]: React.CSSProperties };
|
3330 | export default style;
|
3331 | }
|
3332 |
|
3333 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-plateau-light" {
|
3334 | const style: { [key: string]: React.CSSProperties };
|
3335 | export default style;
|
3336 | }
|
3337 |
|
3338 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-savanna-dark" {
|
3339 | const style: { [key: string]: React.CSSProperties };
|
3340 | export default style;
|
3341 | }
|
3342 |
|
3343 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-savanna-light" {
|
3344 | const style: { [key: string]: React.CSSProperties };
|
3345 | export default style;
|
3346 | }
|
3347 |
|
3348 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-seaside-dark" {
|
3349 | const style: { [key: string]: React.CSSProperties };
|
3350 | export default style;
|
3351 | }
|
3352 |
|
3353 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-seaside-light" {
|
3354 | const style: { [key: string]: React.CSSProperties };
|
3355 | export default style;
|
3356 | }
|
3357 |
|
3358 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-sulphurpool-dark" {
|
3359 | const style: { [key: string]: React.CSSProperties };
|
3360 | export default style;
|
3361 | }
|
3362 |
|
3363 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/atelier-sulphurpool-light" {
|
3364 | const style: { [key: string]: React.CSSProperties };
|
3365 | export default style;
|
3366 | }
|
3367 |
|
3368 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/atom-one-dark-reasonable" {
|
3369 | const style: { [key: string]: React.CSSProperties };
|
3370 | export default style;
|
3371 | }
|
3372 |
|
3373 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/atom-one-dark" {
|
3374 | const style: { [key: string]: React.CSSProperties };
|
3375 | export default style;
|
3376 | }
|
3377 |
|
3378 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/atom-one-light" {
|
3379 | const style: { [key: string]: React.CSSProperties };
|
3380 | export default style;
|
3381 | }
|
3382 |
|
3383 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/brown-paper" {
|
3384 | const style: { [key: string]: React.CSSProperties };
|
3385 | export default style;
|
3386 | }
|
3387 |
|
3388 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/codepen-embed" {
|
3389 | const style: { [key: string]: React.CSSProperties };
|
3390 | export default style;
|
3391 | }
|
3392 |
|
3393 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/color-brewer" {
|
3394 | const style: { [key: string]: React.CSSProperties };
|
3395 | export default style;
|
3396 | }
|
3397 |
|
3398 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/darcula" {
|
3399 | const style: { [key: string]: React.CSSProperties };
|
3400 | export default style;
|
3401 | }
|
3402 |
|
3403 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/dark" {
|
3404 | const style: { [key: string]: React.CSSProperties };
|
3405 | export default style;
|
3406 | }
|
3407 |
|
3408 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/darkula" {
|
3409 | const style: { [key: string]: React.CSSProperties };
|
3410 | export default style;
|
3411 | }
|
3412 |
|
3413 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/default-style" {
|
3414 | const style: { [key: string]: React.CSSProperties };
|
3415 | export default style;
|
3416 | }
|
3417 |
|
3418 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/docco" {
|
3419 | const style: { [key: string]: React.CSSProperties };
|
3420 | export default style;
|
3421 | }
|
3422 |
|
3423 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/dracula" {
|
3424 | const style: { [key: string]: React.CSSProperties };
|
3425 | export default style;
|
3426 | }
|
3427 |
|
3428 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/far" {
|
3429 | const style: { [key: string]: React.CSSProperties };
|
3430 | export default style;
|
3431 | }
|
3432 |
|
3433 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/foundation" {
|
3434 | const style: { [key: string]: React.CSSProperties };
|
3435 | export default style;
|
3436 | }
|
3437 |
|
3438 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/github-gist" {
|
3439 | const style: { [key: string]: React.CSSProperties };
|
3440 | export default style;
|
3441 | }
|
3442 |
|
3443 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/github" {
|
3444 | const style: { [key: string]: React.CSSProperties };
|
3445 | export default style;
|
3446 | }
|
3447 |
|
3448 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/gml" {
|
3449 | const style: { [key: string]: React.CSSProperties };
|
3450 | export default style;
|
3451 | }
|
3452 |
|
3453 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/googlecode" {
|
3454 | const style: { [key: string]: React.CSSProperties };
|
3455 | export default style;
|
3456 | }
|
3457 |
|
3458 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/gradient-dark" {
|
3459 | const style: { [key: string]: React.CSSProperties };
|
3460 | export default style;
|
3461 | }
|
3462 |
|
3463 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/grayscale" {
|
3464 | const style: { [key: string]: React.CSSProperties };
|
3465 | export default style;
|
3466 | }
|
3467 |
|
3468 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/gruvbox-dark" {
|
3469 | const style: { [key: string]: React.CSSProperties };
|
3470 | export default style;
|
3471 | }
|
3472 |
|
3473 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/gruvbox-light" {
|
3474 | const style: { [key: string]: React.CSSProperties };
|
3475 | export default style;
|
3476 | }
|
3477 |
|
3478 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/hopscotch" {
|
3479 | const style: { [key: string]: React.CSSProperties };
|
3480 | export default style;
|
3481 | }
|
3482 |
|
3483 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/hybrid" {
|
3484 | const style: { [key: string]: React.CSSProperties };
|
3485 | export default style;
|
3486 | }
|
3487 |
|
3488 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/idea" {
|
3489 | const style: { [key: string]: React.CSSProperties };
|
3490 | export default style;
|
3491 | }
|
3492 |
|
3493 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/ir-black" {
|
3494 | const style: { [key: string]: React.CSSProperties };
|
3495 | export default style;
|
3496 | }
|
3497 |
|
3498 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/isbl-editor-dark" {
|
3499 | const style: { [key: string]: React.CSSProperties };
|
3500 | export default style;
|
3501 | }
|
3502 |
|
3503 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/isbl-editor-light" {
|
3504 | const style: { [key: string]: React.CSSProperties };
|
3505 | export default style;
|
3506 | }
|
3507 |
|
3508 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/kimbie.dark" {
|
3509 | const style: { [key: string]: React.CSSProperties };
|
3510 | export default style;
|
3511 | }
|
3512 |
|
3513 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/kimbie.light" {
|
3514 | const style: { [key: string]: React.CSSProperties };
|
3515 | export default style;
|
3516 | }
|
3517 |
|
3518 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/lightfair" {
|
3519 | const style: { [key: string]: React.CSSProperties };
|
3520 | export default style;
|
3521 | }
|
3522 |
|
3523 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/lioshi" {
|
3524 | const style: { [key: string]: React.CSSProperties };
|
3525 | export default style;
|
3526 | }
|
3527 |
|
3528 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/magula" {
|
3529 | const style: { [key: string]: React.CSSProperties };
|
3530 | export default style;
|
3531 | }
|
3532 |
|
3533 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/mono-blue" {
|
3534 | const style: { [key: string]: React.CSSProperties };
|
3535 | export default style;
|
3536 | }
|
3537 |
|
3538 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/monokai-sublime" {
|
3539 | const style: { [key: string]: React.CSSProperties };
|
3540 | export default style;
|
3541 | }
|
3542 |
|
3543 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/monokai" {
|
3544 | const style: { [key: string]: React.CSSProperties };
|
3545 | export default style;
|
3546 | }
|
3547 |
|
3548 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/night-owl" {
|
3549 | const style: { [key: string]: React.CSSProperties };
|
3550 | export default style;
|
3551 | }
|
3552 |
|
3553 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/nnfx-dark" {
|
3554 | const style: { [key: string]: React.CSSProperties };
|
3555 | export default style;
|
3556 | }
|
3557 |
|
3558 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/nnfx" {
|
3559 | const style: { [key: string]: React.CSSProperties };
|
3560 | export default style;
|
3561 | }
|
3562 |
|
3563 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/nord" {
|
3564 | const style: { [key: string]: React.CSSProperties };
|
3565 | export default style;
|
3566 | }
|
3567 |
|
3568 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/obsidian" {
|
3569 | const style: { [key: string]: React.CSSProperties };
|
3570 | export default style;
|
3571 | }
|
3572 |
|
3573 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/ocean" {
|
3574 | const style: { [key: string]: React.CSSProperties };
|
3575 | export default style;
|
3576 | }
|
3577 |
|
3578 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/paraiso-dark" {
|
3579 | const style: { [key: string]: React.CSSProperties };
|
3580 | export default style;
|
3581 | }
|
3582 |
|
3583 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/paraiso-light" {
|
3584 | const style: { [key: string]: React.CSSProperties };
|
3585 | export default style;
|
3586 | }
|
3587 |
|
3588 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/pojoaque" {
|
3589 | const style: { [key: string]: React.CSSProperties };
|
3590 | export default style;
|
3591 | }
|
3592 |
|
3593 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/purebasic" {
|
3594 | const style: { [key: string]: React.CSSProperties };
|
3595 | export default style;
|
3596 | }
|
3597 |
|
3598 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/qtcreator_dark" {
|
3599 | const style: { [key: string]: React.CSSProperties };
|
3600 | export default style;
|
3601 | }
|
3602 |
|
3603 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/qtcreator_light" {
|
3604 | const style: { [key: string]: React.CSSProperties };
|
3605 | export default style;
|
3606 | }
|
3607 |
|
3608 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/railscasts" {
|
3609 | const style: { [key: string]: React.CSSProperties };
|
3610 | export default style;
|
3611 | }
|
3612 |
|
3613 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/rainbow" {
|
3614 | const style: { [key: string]: React.CSSProperties };
|
3615 | export default style;
|
3616 | }
|
3617 |
|
3618 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/routeros" {
|
3619 | const style: { [key: string]: React.CSSProperties };
|
3620 | export default style;
|
3621 | }
|
3622 |
|
3623 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/school-book" {
|
3624 | const style: { [key: string]: React.CSSProperties };
|
3625 | export default style;
|
3626 | }
|
3627 |
|
3628 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/shades-of-purple" {
|
3629 | const style: { [key: string]: React.CSSProperties };
|
3630 | export default style;
|
3631 | }
|
3632 |
|
3633 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/solarized-dark" {
|
3634 | const style: { [key: string]: React.CSSProperties };
|
3635 | export default style;
|
3636 | }
|
3637 |
|
3638 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/solarized-light" {
|
3639 | const style: { [key: string]: React.CSSProperties };
|
3640 | export default style;
|
3641 | }
|
3642 |
|
3643 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/srcery" {
|
3644 | const style: { [key: string]: React.CSSProperties };
|
3645 | export default style;
|
3646 | }
|
3647 |
|
3648 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/stackoverflow-dark" {
|
3649 | const style: { [key: string]: React.CSSProperties };
|
3650 | export default style;
|
3651 | }
|
3652 |
|
3653 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/stackoverflow-light" {
|
3654 | const style: { [key: string]: React.CSSProperties };
|
3655 | export default style;
|
3656 | }
|
3657 |
|
3658 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/sunburst" {
|
3659 | const style: { [key: string]: React.CSSProperties };
|
3660 | export default style;
|
3661 | }
|
3662 |
|
3663 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/tomorrow-night-blue" {
|
3664 | const style: { [key: string]: React.CSSProperties };
|
3665 | export default style;
|
3666 | }
|
3667 |
|
3668 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/tomorrow-night-bright" {
|
3669 | const style: { [key: string]: React.CSSProperties };
|
3670 | export default style;
|
3671 | }
|
3672 |
|
3673 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/tomorrow-night-eighties" {
|
3674 | const style: { [key: string]: React.CSSProperties };
|
3675 | export default style;
|
3676 | }
|
3677 |
|
3678 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/tomorrow-night" {
|
3679 | const style: { [key: string]: React.CSSProperties };
|
3680 | export default style;
|
3681 | }
|
3682 |
|
3683 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/tomorrow" {
|
3684 | const style: { [key: string]: React.CSSProperties };
|
3685 | export default style;
|
3686 | }
|
3687 |
|
3688 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/vs" {
|
3689 | const style: { [key: string]: React.CSSProperties };
|
3690 | export default style;
|
3691 | }
|
3692 |
|
3693 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/vs2015" {
|
3694 | const style: { [key: string]: React.CSSProperties };
|
3695 | export default style;
|
3696 | }
|
3697 |
|
3698 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/xcode" {
|
3699 | const style: { [key: string]: React.CSSProperties };
|
3700 | export default style;
|
3701 | }
|
3702 |
|
3703 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/xt256" {
|
3704 | const style: { [key: string]: React.CSSProperties };
|
3705 | export default style;
|
3706 | }
|
3707 |
|
3708 | declare module "react-syntax-highlighter/dist/cjs/styles/hljs/zenburn" {
|
3709 | const style: { [key: string]: React.CSSProperties };
|
3710 | export default style;
|
3711 | }
|
3712 |
|
3713 | declare module "react-syntax-highlighter/dist/cjs/styles/prism" {
|
3714 | export { default as a11yDark } from "react-syntax-highlighter/dist/cjs/styles/prism/a11y-dark";
|
3715 | export { default as atomDark } from "react-syntax-highlighter/dist/cjs/styles/prism/atom-dark";
|
3716 | export { default as base16AteliersulphurpoolLight } from "react-syntax-highlighter/dist/cjs/styles/prism/base16-ateliersulphurpool.light";
|
3717 | export { default as cb } from "react-syntax-highlighter/dist/cjs/styles/prism/cb";
|
3718 | export { default as coldarkCold } from "react-syntax-highlighter/dist/cjs/styles/prism/coldark-cold";
|
3719 | export { default as coldarkDark } from "react-syntax-highlighter/dist/cjs/styles/prism/coldark-dark";
|
3720 | export { default as coy } from "react-syntax-highlighter/dist/cjs/styles/prism/coy";
|
3721 | export { default as darcula } from "react-syntax-highlighter/dist/cjs/styles/prism/darcula";
|
3722 | export { default as dark } from "react-syntax-highlighter/dist/cjs/styles/prism/dark";
|
3723 | export { default as dracula } from "react-syntax-highlighter/dist/cjs/styles/prism/dracula";
|
3724 | export { default as duotoneDark } from "react-syntax-highlighter/dist/cjs/styles/prism/duotone-dark";
|
3725 | export { default as duotoneEarth } from "react-syntax-highlighter/dist/cjs/styles/prism/duotone-earth";
|
3726 | export { default as duotoneForest } from "react-syntax-highlighter/dist/cjs/styles/prism/duotone-forest";
|
3727 | export { default as duotoneLight } from "react-syntax-highlighter/dist/cjs/styles/prism/duotone-light";
|
3728 | export { default as duotoneSea } from "react-syntax-highlighter/dist/cjs/styles/prism/duotone-sea";
|
3729 | export { default as duotoneSpace } from "react-syntax-highlighter/dist/cjs/styles/prism/duotone-space";
|
3730 | export { default as funky } from "react-syntax-highlighter/dist/cjs/styles/prism/funky";
|
3731 | export { default as ghcolors } from "react-syntax-highlighter/dist/cjs/styles/prism/ghcolors";
|
3732 | export { default as hopscotch } from "react-syntax-highlighter/dist/cjs/styles/prism/hopscotch";
|
3733 | export { default as materialDark } from "react-syntax-highlighter/dist/cjs/styles/prism/material-dark";
|
3734 | export { default as materialLight } from "react-syntax-highlighter/dist/cjs/styles/prism/material-light";
|
3735 | export { default as materialOceanic } from "react-syntax-highlighter/dist/cjs/styles/prism/material-oceanic";
|
3736 | export { default as nightOwl } from "react-syntax-highlighter/dist/cjs/styles/prism/night-owl";
|
3737 | export { default as nord } from "react-syntax-highlighter/dist/cjs/styles/prism/nord";
|
3738 | export { default as okaidia } from "react-syntax-highlighter/dist/cjs/styles/prism/okaidia";
|
3739 | export { default as oneDark } from "react-syntax-highlighter/dist/cjs/styles/prism/one-dark";
|
3740 | export { default as oneLight } from "react-syntax-highlighter/dist/cjs/styles/prism/one-light";
|
3741 | export { default as pojoaque } from "react-syntax-highlighter/dist/cjs/styles/prism/pojoaque";
|
3742 | export { default as prism } from "react-syntax-highlighter/dist/cjs/styles/prism/prism";
|
3743 | export { default as shadesOfPurple } from "react-syntax-highlighter/dist/cjs/styles/prism/shades-of-purple";
|
3744 | export { default as solarizedlight } from "react-syntax-highlighter/dist/cjs/styles/prism/solarizedlight";
|
3745 | export { default as synthwave84 } from "react-syntax-highlighter/dist/cjs/styles/prism/synthwave84";
|
3746 | export { default as tomorrow } from "react-syntax-highlighter/dist/cjs/styles/prism/tomorrow";
|
3747 | export { default as twilight } from "react-syntax-highlighter/dist/cjs/styles/prism/twilight";
|
3748 | export { default as vsDark } from "react-syntax-highlighter/dist/cjs/styles/prism/vs-dark";
|
3749 | export { default as vs } from "react-syntax-highlighter/dist/cjs/styles/prism/vs";
|
3750 | export { default as vscDarkPlus } from "react-syntax-highlighter/dist/cjs/styles/prism/vsc-dark-plus";
|
3751 | export { default as xonokai } from "react-syntax-highlighter/dist/cjs/styles/prism/xonokai";
|
3752 | }
|
3753 |
|
3754 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/a11y-dark" {
|
3755 | const style: { [key: string]: React.CSSProperties };
|
3756 | export default style;
|
3757 | }
|
3758 |
|
3759 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/atom-dark" {
|
3760 | const style: { [key: string]: React.CSSProperties };
|
3761 | export default style;
|
3762 | }
|
3763 |
|
3764 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/base16-ateliersulphurpool.light" {
|
3765 | const style: { [key: string]: React.CSSProperties };
|
3766 | export default style;
|
3767 | }
|
3768 |
|
3769 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/cb" {
|
3770 | const style: { [key: string]: React.CSSProperties };
|
3771 | export default style;
|
3772 | }
|
3773 |
|
3774 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/coldark-cold" {
|
3775 | const style: { [key: string]: React.CSSProperties };
|
3776 | export default style;
|
3777 | }
|
3778 |
|
3779 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/coldark-dark" {
|
3780 | const style: { [key: string]: React.CSSProperties };
|
3781 | export default style;
|
3782 | }
|
3783 |
|
3784 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/coy" {
|
3785 | const style: { [key: string]: React.CSSProperties };
|
3786 | export default style;
|
3787 | }
|
3788 |
|
3789 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/darcula" {
|
3790 | const style: { [key: string]: React.CSSProperties };
|
3791 | export default style;
|
3792 | }
|
3793 |
|
3794 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/dark" {
|
3795 | const style: { [key: string]: React.CSSProperties };
|
3796 | export default style;
|
3797 | }
|
3798 |
|
3799 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/dracula" {
|
3800 | const style: { [key: string]: React.CSSProperties };
|
3801 | export default style;
|
3802 | }
|
3803 |
|
3804 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/duotone-dark" {
|
3805 | const style: { [key: string]: React.CSSProperties };
|
3806 | export default style;
|
3807 | }
|
3808 |
|
3809 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/duotone-earth" {
|
3810 | const style: { [key: string]: React.CSSProperties };
|
3811 | export default style;
|
3812 | }
|
3813 |
|
3814 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/duotone-forest" {
|
3815 | const style: { [key: string]: React.CSSProperties };
|
3816 | export default style;
|
3817 | }
|
3818 |
|
3819 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/duotone-light" {
|
3820 | const style: { [key: string]: React.CSSProperties };
|
3821 | export default style;
|
3822 | }
|
3823 |
|
3824 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/duotone-sea" {
|
3825 | const style: { [key: string]: React.CSSProperties };
|
3826 | export default style;
|
3827 | }
|
3828 |
|
3829 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/duotone-space" {
|
3830 | const style: { [key: string]: React.CSSProperties };
|
3831 | export default style;
|
3832 | }
|
3833 |
|
3834 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/funky" {
|
3835 | const style: { [key: string]: React.CSSProperties };
|
3836 | export default style;
|
3837 | }
|
3838 |
|
3839 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/ghcolors" {
|
3840 | const style: { [key: string]: React.CSSProperties };
|
3841 | export default style;
|
3842 | }
|
3843 |
|
3844 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/hopscotch" {
|
3845 | const style: { [key: string]: React.CSSProperties };
|
3846 | export default style;
|
3847 | }
|
3848 |
|
3849 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/material-dark" {
|
3850 | const style: { [key: string]: React.CSSProperties };
|
3851 | export default style;
|
3852 | }
|
3853 |
|
3854 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/material-light" {
|
3855 | const style: { [key: string]: React.CSSProperties };
|
3856 | export default style;
|
3857 | }
|
3858 |
|
3859 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/material-oceanic" {
|
3860 | const style: { [key: string]: React.CSSProperties };
|
3861 | export default style;
|
3862 | }
|
3863 |
|
3864 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/night-owl" {
|
3865 | const style: { [key: string]: React.CSSProperties };
|
3866 | export default style;
|
3867 | }
|
3868 |
|
3869 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/nord" {
|
3870 | const style: { [key: string]: React.CSSProperties };
|
3871 | export default style;
|
3872 | }
|
3873 |
|
3874 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/okaidia" {
|
3875 | const style: { [key: string]: React.CSSProperties };
|
3876 | export default style;
|
3877 | }
|
3878 |
|
3879 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/one-dark" {
|
3880 | const style: { [key: string]: React.CSSProperties };
|
3881 | export default style;
|
3882 | }
|
3883 |
|
3884 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/one-light" {
|
3885 | const style: { [key: string]: React.CSSProperties };
|
3886 | export default style;
|
3887 | }
|
3888 |
|
3889 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/pojoaque" {
|
3890 | const style: { [key: string]: React.CSSProperties };
|
3891 | export default style;
|
3892 | }
|
3893 |
|
3894 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/prism" {
|
3895 | const style: { [key: string]: React.CSSProperties };
|
3896 | export default style;
|
3897 | }
|
3898 |
|
3899 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/shades-of-purple" {
|
3900 | const style: { [key: string]: React.CSSProperties };
|
3901 | export default style;
|
3902 | }
|
3903 |
|
3904 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/solarizedlight" {
|
3905 | const style: { [key: string]: React.CSSProperties };
|
3906 | export default style;
|
3907 | }
|
3908 |
|
3909 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/synthwave84" {
|
3910 | const style: { [key: string]: React.CSSProperties };
|
3911 | export default style;
|
3912 | }
|
3913 |
|
3914 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/tomorrow" {
|
3915 | const style: { [key: string]: React.CSSProperties };
|
3916 | export default style;
|
3917 | }
|
3918 |
|
3919 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/twilight" {
|
3920 | const style: { [key: string]: React.CSSProperties };
|
3921 | export default style;
|
3922 | }
|
3923 |
|
3924 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/vs-dark" {
|
3925 | const style: { [key: string]: React.CSSProperties };
|
3926 | export default style;
|
3927 | }
|
3928 |
|
3929 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/vs" {
|
3930 | const style: { [key: string]: React.CSSProperties };
|
3931 | export default style;
|
3932 | }
|
3933 |
|
3934 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/vsc-dark-plus" {
|
3935 | const style: { [key: string]: React.CSSProperties };
|
3936 | export default style;
|
3937 | }
|
3938 |
|
3939 | declare module "react-syntax-highlighter/dist/cjs/styles/prism/xonokai" {
|
3940 | const style: { [key: string]: React.CSSProperties };
|
3941 | export default style;
|
3942 | }
|
3943 |
|
3944 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/1c" {
|
3945 | const language: any;
|
3946 | export default language;
|
3947 | }
|
3948 |
|
3949 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/abnf" {
|
3950 | const language: any;
|
3951 | export default language;
|
3952 | }
|
3953 |
|
3954 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/accesslog" {
|
3955 | const language: any;
|
3956 | export default language;
|
3957 | }
|
3958 |
|
3959 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/actionscript" {
|
3960 | const language: any;
|
3961 | export default language;
|
3962 | }
|
3963 |
|
3964 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/ada" {
|
3965 | const language: any;
|
3966 | export default language;
|
3967 | }
|
3968 |
|
3969 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/angelscript" {
|
3970 | const language: any;
|
3971 | export default language;
|
3972 | }
|
3973 |
|
3974 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/apache" {
|
3975 | const language: any;
|
3976 | export default language;
|
3977 | }
|
3978 |
|
3979 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/applescript" {
|
3980 | const language: any;
|
3981 | export default language;
|
3982 | }
|
3983 |
|
3984 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/arcade" {
|
3985 | const language: any;
|
3986 | export default language;
|
3987 | }
|
3988 |
|
3989 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/arduino" {
|
3990 | const language: any;
|
3991 | export default language;
|
3992 | }
|
3993 |
|
3994 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/armasm" {
|
3995 | const language: any;
|
3996 | export default language;
|
3997 | }
|
3998 |
|
3999 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/asciidoc" {
|
4000 | const language: any;
|
4001 | export default language;
|
4002 | }
|
4003 |
|
4004 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/aspectj" {
|
4005 | const language: any;
|
4006 | export default language;
|
4007 | }
|
4008 |
|
4009 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/autohotkey" {
|
4010 | const language: any;
|
4011 | export default language;
|
4012 | }
|
4013 |
|
4014 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/autoit" {
|
4015 | const language: any;
|
4016 | export default language;
|
4017 | }
|
4018 |
|
4019 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/avrasm" {
|
4020 | const language: any;
|
4021 | export default language;
|
4022 | }
|
4023 |
|
4024 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/awk" {
|
4025 | const language: any;
|
4026 | export default language;
|
4027 | }
|
4028 |
|
4029 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/axapta" {
|
4030 | const language: any;
|
4031 | export default language;
|
4032 | }
|
4033 |
|
4034 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/bash" {
|
4035 | const language: any;
|
4036 | export default language;
|
4037 | }
|
4038 |
|
4039 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/basic" {
|
4040 | const language: any;
|
4041 | export default language;
|
4042 | }
|
4043 |
|
4044 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/bnf" {
|
4045 | const language: any;
|
4046 | export default language;
|
4047 | }
|
4048 |
|
4049 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/brainfuck" {
|
4050 | const language: any;
|
4051 | export default language;
|
4052 | }
|
4053 |
|
4054 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/c-like" {
|
4055 | const language: any;
|
4056 | export default language;
|
4057 | }
|
4058 |
|
4059 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/c" {
|
4060 | const language: any;
|
4061 | export default language;
|
4062 | }
|
4063 |
|
4064 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/cal" {
|
4065 | const language: any;
|
4066 | export default language;
|
4067 | }
|
4068 |
|
4069 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/capnproto" {
|
4070 | const language: any;
|
4071 | export default language;
|
4072 | }
|
4073 |
|
4074 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/ceylon" {
|
4075 | const language: any;
|
4076 | export default language;
|
4077 | }
|
4078 |
|
4079 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/clean" {
|
4080 | const language: any;
|
4081 | export default language;
|
4082 | }
|
4083 |
|
4084 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/clojure-repl" {
|
4085 | const language: any;
|
4086 | export default language;
|
4087 | }
|
4088 |
|
4089 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/clojure" {
|
4090 | const language: any;
|
4091 | export default language;
|
4092 | }
|
4093 |
|
4094 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/cmake" {
|
4095 | const language: any;
|
4096 | export default language;
|
4097 | }
|
4098 |
|
4099 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/coffeescript" {
|
4100 | const language: any;
|
4101 | export default language;
|
4102 | }
|
4103 |
|
4104 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/coq" {
|
4105 | const language: any;
|
4106 | export default language;
|
4107 | }
|
4108 |
|
4109 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/cos" {
|
4110 | const language: any;
|
4111 | export default language;
|
4112 | }
|
4113 |
|
4114 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/cpp" {
|
4115 | const language: any;
|
4116 | export default language;
|
4117 | }
|
4118 |
|
4119 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/crmsh" {
|
4120 | const language: any;
|
4121 | export default language;
|
4122 | }
|
4123 |
|
4124 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/crystal" {
|
4125 | const language: any;
|
4126 | export default language;
|
4127 | }
|
4128 |
|
4129 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/cs" {
|
4130 | const language: any;
|
4131 | export default language;
|
4132 | }
|
4133 |
|
4134 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/csharp" {
|
4135 | const language: any;
|
4136 | export default language;
|
4137 | }
|
4138 |
|
4139 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/csp" {
|
4140 | const language: any;
|
4141 | export default language;
|
4142 | }
|
4143 |
|
4144 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/css" {
|
4145 | const language: any;
|
4146 | export default language;
|
4147 | }
|
4148 |
|
4149 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/d" {
|
4150 | const language: any;
|
4151 | export default language;
|
4152 | }
|
4153 |
|
4154 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/dart" {
|
4155 | const language: any;
|
4156 | export default language;
|
4157 | }
|
4158 |
|
4159 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/delphi" {
|
4160 | const language: any;
|
4161 | export default language;
|
4162 | }
|
4163 |
|
4164 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/diff" {
|
4165 | const language: any;
|
4166 | export default language;
|
4167 | }
|
4168 |
|
4169 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/django" {
|
4170 | const language: any;
|
4171 | export default language;
|
4172 | }
|
4173 |
|
4174 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/dns" {
|
4175 | const language: any;
|
4176 | export default language;
|
4177 | }
|
4178 |
|
4179 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/dockerfile" {
|
4180 | const language: any;
|
4181 | export default language;
|
4182 | }
|
4183 |
|
4184 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/dos" {
|
4185 | const language: any;
|
4186 | export default language;
|
4187 | }
|
4188 |
|
4189 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/dsconfig" {
|
4190 | const language: any;
|
4191 | export default language;
|
4192 | }
|
4193 |
|
4194 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/dts" {
|
4195 | const language: any;
|
4196 | export default language;
|
4197 | }
|
4198 |
|
4199 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/dust" {
|
4200 | const language: any;
|
4201 | export default language;
|
4202 | }
|
4203 |
|
4204 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/ebnf" {
|
4205 | const language: any;
|
4206 | export default language;
|
4207 | }
|
4208 |
|
4209 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/elixir" {
|
4210 | const language: any;
|
4211 | export default language;
|
4212 | }
|
4213 |
|
4214 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/elm" {
|
4215 | const language: any;
|
4216 | export default language;
|
4217 | }
|
4218 |
|
4219 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/erb" {
|
4220 | const language: any;
|
4221 | export default language;
|
4222 | }
|
4223 |
|
4224 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/erlang-repl" {
|
4225 | const language: any;
|
4226 | export default language;
|
4227 | }
|
4228 |
|
4229 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/erlang" {
|
4230 | const language: any;
|
4231 | export default language;
|
4232 | }
|
4233 |
|
4234 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/excel" {
|
4235 | const language: any;
|
4236 | export default language;
|
4237 | }
|
4238 |
|
4239 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/fix" {
|
4240 | const language: any;
|
4241 | export default language;
|
4242 | }
|
4243 |
|
4244 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/flix" {
|
4245 | const language: any;
|
4246 | export default language;
|
4247 | }
|
4248 |
|
4249 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/fortran" {
|
4250 | const language: any;
|
4251 | export default language;
|
4252 | }
|
4253 |
|
4254 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/fsharp" {
|
4255 | const language: any;
|
4256 | export default language;
|
4257 | }
|
4258 |
|
4259 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/gams" {
|
4260 | const language: any;
|
4261 | export default language;
|
4262 | }
|
4263 |
|
4264 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/gauss" {
|
4265 | const language: any;
|
4266 | export default language;
|
4267 | }
|
4268 |
|
4269 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/gcode" {
|
4270 | const language: any;
|
4271 | export default language;
|
4272 | }
|
4273 |
|
4274 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/gherkin" {
|
4275 | const language: any;
|
4276 | export default language;
|
4277 | }
|
4278 |
|
4279 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/glsl" {
|
4280 | const language: any;
|
4281 | export default language;
|
4282 | }
|
4283 |
|
4284 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/gml" {
|
4285 | const language: any;
|
4286 | export default language;
|
4287 | }
|
4288 |
|
4289 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/go" {
|
4290 | const language: any;
|
4291 | export default language;
|
4292 | }
|
4293 |
|
4294 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/golo" {
|
4295 | const language: any;
|
4296 | export default language;
|
4297 | }
|
4298 |
|
4299 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/gradle" {
|
4300 | const language: any;
|
4301 | export default language;
|
4302 | }
|
4303 |
|
4304 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/groovy" {
|
4305 | const language: any;
|
4306 | export default language;
|
4307 | }
|
4308 |
|
4309 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/haml" {
|
4310 | const language: any;
|
4311 | export default language;
|
4312 | }
|
4313 |
|
4314 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/handlebars" {
|
4315 | const language: any;
|
4316 | export default language;
|
4317 | }
|
4318 |
|
4319 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/haskell" {
|
4320 | const language: any;
|
4321 | export default language;
|
4322 | }
|
4323 |
|
4324 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/haxe" {
|
4325 | const language: any;
|
4326 | export default language;
|
4327 | }
|
4328 |
|
4329 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/hsp" {
|
4330 | const language: any;
|
4331 | export default language;
|
4332 | }
|
4333 |
|
4334 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/htmlbars" {
|
4335 | const language: any;
|
4336 | export default language;
|
4337 | }
|
4338 |
|
4339 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/http" {
|
4340 | const language: any;
|
4341 | export default language;
|
4342 | }
|
4343 |
|
4344 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/hy" {
|
4345 | const language: any;
|
4346 | export default language;
|
4347 | }
|
4348 |
|
4349 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/inform7" {
|
4350 | const language: any;
|
4351 | export default language;
|
4352 | }
|
4353 |
|
4354 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/ini" {
|
4355 | const language: any;
|
4356 | export default language;
|
4357 | }
|
4358 |
|
4359 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/irpf90" {
|
4360 | const language: any;
|
4361 | export default language;
|
4362 | }
|
4363 |
|
4364 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/isbl" {
|
4365 | const language: any;
|
4366 | export default language;
|
4367 | }
|
4368 |
|
4369 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/java" {
|
4370 | const language: any;
|
4371 | export default language;
|
4372 | }
|
4373 |
|
4374 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/javascript" {
|
4375 | const language: any;
|
4376 | export default language;
|
4377 | }
|
4378 |
|
4379 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/jboss-cli" {
|
4380 | const language: any;
|
4381 | export default language;
|
4382 | }
|
4383 |
|
4384 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/json" {
|
4385 | const language: any;
|
4386 | export default language;
|
4387 | }
|
4388 |
|
4389 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/julia-repl" {
|
4390 | const language: any;
|
4391 | export default language;
|
4392 | }
|
4393 |
|
4394 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/julia" {
|
4395 | const language: any;
|
4396 | export default language;
|
4397 | }
|
4398 |
|
4399 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/kotlin" {
|
4400 | const language: any;
|
4401 | export default language;
|
4402 | }
|
4403 |
|
4404 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/lasso" {
|
4405 | const language: any;
|
4406 | export default language;
|
4407 | }
|
4408 |
|
4409 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/latex" {
|
4410 | const language: any;
|
4411 | export default language;
|
4412 | }
|
4413 |
|
4414 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/ldif" {
|
4415 | const language: any;
|
4416 | export default language;
|
4417 | }
|
4418 |
|
4419 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/leaf" {
|
4420 | const language: any;
|
4421 | export default language;
|
4422 | }
|
4423 |
|
4424 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/less" {
|
4425 | const language: any;
|
4426 | export default language;
|
4427 | }
|
4428 |
|
4429 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/lisp" {
|
4430 | const language: any;
|
4431 | export default language;
|
4432 | }
|
4433 |
|
4434 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/livecodeserver" {
|
4435 | const language: any;
|
4436 | export default language;
|
4437 | }
|
4438 |
|
4439 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/livescript" {
|
4440 | const language: any;
|
4441 | export default language;
|
4442 | }
|
4443 |
|
4444 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/llvm" {
|
4445 | const language: any;
|
4446 | export default language;
|
4447 | }
|
4448 |
|
4449 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/lsl" {
|
4450 | const language: any;
|
4451 | export default language;
|
4452 | }
|
4453 |
|
4454 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/lua" {
|
4455 | const language: any;
|
4456 | export default language;
|
4457 | }
|
4458 |
|
4459 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/makefile" {
|
4460 | const language: any;
|
4461 | export default language;
|
4462 | }
|
4463 |
|
4464 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/markdown" {
|
4465 | const language: any;
|
4466 | export default language;
|
4467 | }
|
4468 |
|
4469 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/mathematica" {
|
4470 | const language: any;
|
4471 | export default language;
|
4472 | }
|
4473 |
|
4474 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/matlab" {
|
4475 | const language: any;
|
4476 | export default language;
|
4477 | }
|
4478 |
|
4479 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/maxima" {
|
4480 | const language: any;
|
4481 | export default language;
|
4482 | }
|
4483 |
|
4484 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/mel" {
|
4485 | const language: any;
|
4486 | export default language;
|
4487 | }
|
4488 |
|
4489 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/mercury" {
|
4490 | const language: any;
|
4491 | export default language;
|
4492 | }
|
4493 |
|
4494 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/mipsasm" {
|
4495 | const language: any;
|
4496 | export default language;
|
4497 | }
|
4498 |
|
4499 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/mizar" {
|
4500 | const language: any;
|
4501 | export default language;
|
4502 | }
|
4503 |
|
4504 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/mojolicious" {
|
4505 | const language: any;
|
4506 | export default language;
|
4507 | }
|
4508 |
|
4509 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/monkey" {
|
4510 | const language: any;
|
4511 | export default language;
|
4512 | }
|
4513 |
|
4514 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/moonscript" {
|
4515 | const language: any;
|
4516 | export default language;
|
4517 | }
|
4518 |
|
4519 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/n1ql" {
|
4520 | const language: any;
|
4521 | export default language;
|
4522 | }
|
4523 |
|
4524 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/nginx" {
|
4525 | const language: any;
|
4526 | export default language;
|
4527 | }
|
4528 |
|
4529 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/nim" {
|
4530 | const language: any;
|
4531 | export default language;
|
4532 | }
|
4533 |
|
4534 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/nimrod" {
|
4535 | const language: any;
|
4536 | export default language;
|
4537 | }
|
4538 |
|
4539 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/nix" {
|
4540 | const language: any;
|
4541 | export default language;
|
4542 | }
|
4543 |
|
4544 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/nsis" {
|
4545 | const language: any;
|
4546 | export default language;
|
4547 | }
|
4548 |
|
4549 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/objectivec" {
|
4550 | const language: any;
|
4551 | export default language;
|
4552 | }
|
4553 |
|
4554 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/ocaml" {
|
4555 | const language: any;
|
4556 | export default language;
|
4557 | }
|
4558 |
|
4559 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/openscad" {
|
4560 | const language: any;
|
4561 | export default language;
|
4562 | }
|
4563 |
|
4564 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/oxygene" {
|
4565 | const language: any;
|
4566 | export default language;
|
4567 | }
|
4568 |
|
4569 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/parser3" {
|
4570 | const language: any;
|
4571 | export default language;
|
4572 | }
|
4573 |
|
4574 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/perl" {
|
4575 | const language: any;
|
4576 | export default language;
|
4577 | }
|
4578 |
|
4579 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/pf" {
|
4580 | const language: any;
|
4581 | export default language;
|
4582 | }
|
4583 |
|
4584 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/pgsql" {
|
4585 | const language: any;
|
4586 | export default language;
|
4587 | }
|
4588 |
|
4589 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/php-template" {
|
4590 | const language: any;
|
4591 | export default language;
|
4592 | }
|
4593 |
|
4594 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/php" {
|
4595 | const language: any;
|
4596 | export default language;
|
4597 | }
|
4598 |
|
4599 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/plaintext" {
|
4600 | const language: any;
|
4601 | export default language;
|
4602 | }
|
4603 |
|
4604 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/pony" {
|
4605 | const language: any;
|
4606 | export default language;
|
4607 | }
|
4608 |
|
4609 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/powershell" {
|
4610 | const language: any;
|
4611 | export default language;
|
4612 | }
|
4613 |
|
4614 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/processing" {
|
4615 | const language: any;
|
4616 | export default language;
|
4617 | }
|
4618 |
|
4619 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/profile" {
|
4620 | const language: any;
|
4621 | export default language;
|
4622 | }
|
4623 |
|
4624 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/prolog" {
|
4625 | const language: any;
|
4626 | export default language;
|
4627 | }
|
4628 |
|
4629 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/properties" {
|
4630 | const language: any;
|
4631 | export default language;
|
4632 | }
|
4633 |
|
4634 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/protobuf" {
|
4635 | const language: any;
|
4636 | export default language;
|
4637 | }
|
4638 |
|
4639 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/puppet" {
|
4640 | const language: any;
|
4641 | export default language;
|
4642 | }
|
4643 |
|
4644 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/purebasic" {
|
4645 | const language: any;
|
4646 | export default language;
|
4647 | }
|
4648 |
|
4649 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/python-repl" {
|
4650 | const language: any;
|
4651 | export default language;
|
4652 | }
|
4653 |
|
4654 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/python" {
|
4655 | const language: any;
|
4656 | export default language;
|
4657 | }
|
4658 |
|
4659 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/q" {
|
4660 | const language: any;
|
4661 | export default language;
|
4662 | }
|
4663 |
|
4664 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/qml" {
|
4665 | const language: any;
|
4666 | export default language;
|
4667 | }
|
4668 |
|
4669 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/r" {
|
4670 | const language: any;
|
4671 | export default language;
|
4672 | }
|
4673 |
|
4674 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/reasonml" {
|
4675 | const language: any;
|
4676 | export default language;
|
4677 | }
|
4678 |
|
4679 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/rib" {
|
4680 | const language: any;
|
4681 | export default language;
|
4682 | }
|
4683 |
|
4684 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/roboconf" {
|
4685 | const language: any;
|
4686 | export default language;
|
4687 | }
|
4688 |
|
4689 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/routeros" {
|
4690 | const language: any;
|
4691 | export default language;
|
4692 | }
|
4693 |
|
4694 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/rsl" {
|
4695 | const language: any;
|
4696 | export default language;
|
4697 | }
|
4698 |
|
4699 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/ruby" {
|
4700 | const language: any;
|
4701 | export default language;
|
4702 | }
|
4703 |
|
4704 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/ruleslanguage" {
|
4705 | const language: any;
|
4706 | export default language;
|
4707 | }
|
4708 |
|
4709 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/rust" {
|
4710 | const language: any;
|
4711 | export default language;
|
4712 | }
|
4713 |
|
4714 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/sas" {
|
4715 | const language: any;
|
4716 | export default language;
|
4717 | }
|
4718 |
|
4719 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/scala" {
|
4720 | const language: any;
|
4721 | export default language;
|
4722 | }
|
4723 |
|
4724 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/scheme" {
|
4725 | const language: any;
|
4726 | export default language;
|
4727 | }
|
4728 |
|
4729 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/scilab" {
|
4730 | const language: any;
|
4731 | export default language;
|
4732 | }
|
4733 |
|
4734 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/scss" {
|
4735 | const language: any;
|
4736 | export default language;
|
4737 | }
|
4738 |
|
4739 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/shell" {
|
4740 | const language: any;
|
4741 | export default language;
|
4742 | }
|
4743 |
|
4744 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/smali" {
|
4745 | const language: any;
|
4746 | export default language;
|
4747 | }
|
4748 |
|
4749 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/smalltalk" {
|
4750 | const language: any;
|
4751 | export default language;
|
4752 | }
|
4753 |
|
4754 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/sml" {
|
4755 | const language: any;
|
4756 | export default language;
|
4757 | }
|
4758 |
|
4759 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/sqf" {
|
4760 | const language: any;
|
4761 | export default language;
|
4762 | }
|
4763 |
|
4764 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/sql" {
|
4765 | const language: any;
|
4766 | export default language;
|
4767 | }
|
4768 |
|
4769 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/stan" {
|
4770 | const language: any;
|
4771 | export default language;
|
4772 | }
|
4773 |
|
4774 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/stata" {
|
4775 | const language: any;
|
4776 | export default language;
|
4777 | }
|
4778 |
|
4779 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/step21" {
|
4780 | const language: any;
|
4781 | export default language;
|
4782 | }
|
4783 |
|
4784 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/stylus" {
|
4785 | const language: any;
|
4786 | export default language;
|
4787 | }
|
4788 |
|
4789 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/subunit" {
|
4790 | const language: any;
|
4791 | export default language;
|
4792 | }
|
4793 |
|
4794 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/swift" {
|
4795 | const language: any;
|
4796 | export default language;
|
4797 | }
|
4798 |
|
4799 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/taggerscript" {
|
4800 | const language: any;
|
4801 | export default language;
|
4802 | }
|
4803 |
|
4804 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/tap" {
|
4805 | const language: any;
|
4806 | export default language;
|
4807 | }
|
4808 |
|
4809 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/tcl" {
|
4810 | const language: any;
|
4811 | export default language;
|
4812 | }
|
4813 |
|
4814 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/tex" {
|
4815 | const language: any;
|
4816 | export default language;
|
4817 | }
|
4818 |
|
4819 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/thrift" {
|
4820 | const language: any;
|
4821 | export default language;
|
4822 | }
|
4823 |
|
4824 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/tp" {
|
4825 | const language: any;
|
4826 | export default language;
|
4827 | }
|
4828 |
|
4829 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/twig" {
|
4830 | const language: any;
|
4831 | export default language;
|
4832 | }
|
4833 |
|
4834 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/typescript" {
|
4835 | const language: any;
|
4836 | export default language;
|
4837 | }
|
4838 |
|
4839 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/vala" {
|
4840 | const language: any;
|
4841 | export default language;
|
4842 | }
|
4843 |
|
4844 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/vbnet" {
|
4845 | const language: any;
|
4846 | export default language;
|
4847 | }
|
4848 |
|
4849 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/vbscript-html" {
|
4850 | const language: any;
|
4851 | export default language;
|
4852 | }
|
4853 |
|
4854 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/vbscript" {
|
4855 | const language: any;
|
4856 | export default language;
|
4857 | }
|
4858 |
|
4859 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/verilog" {
|
4860 | const language: any;
|
4861 | export default language;
|
4862 | }
|
4863 |
|
4864 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/vhdl" {
|
4865 | const language: any;
|
4866 | export default language;
|
4867 | }
|
4868 |
|
4869 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/vim" {
|
4870 | const language: any;
|
4871 | export default language;
|
4872 | }
|
4873 |
|
4874 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/x86asm" {
|
4875 | const language: any;
|
4876 | export default language;
|
4877 | }
|
4878 |
|
4879 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/xl" {
|
4880 | const language: any;
|
4881 | export default language;
|
4882 | }
|
4883 |
|
4884 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/xml" {
|
4885 | const language: any;
|
4886 | export default language;
|
4887 | }
|
4888 |
|
4889 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/xquery" {
|
4890 | const language: any;
|
4891 | export default language;
|
4892 | }
|
4893 |
|
4894 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/yaml" {
|
4895 | const language: any;
|
4896 | export default language;
|
4897 | }
|
4898 |
|
4899 | declare module "react-syntax-highlighter/dist/cjs/languages/hljs/zephir" {
|
4900 | const language: any;
|
4901 | export default language;
|
4902 | }
|
4903 |
|
4904 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/abap" {
|
4905 | const language: any;
|
4906 | export default language;
|
4907 | }
|
4908 |
|
4909 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/abnf" {
|
4910 | const language: any;
|
4911 | export default language;
|
4912 | }
|
4913 |
|
4914 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/actionscript" {
|
4915 | const language: any;
|
4916 | export default language;
|
4917 | }
|
4918 |
|
4919 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/ada" {
|
4920 | const language: any;
|
4921 | export default language;
|
4922 | }
|
4923 |
|
4924 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/agda" {
|
4925 | const language: any;
|
4926 | export default language;
|
4927 | }
|
4928 |
|
4929 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/al" {
|
4930 | const language: any;
|
4931 | export default language;
|
4932 | }
|
4933 |
|
4934 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/antlr4" {
|
4935 | const language: any;
|
4936 | export default language;
|
4937 | }
|
4938 |
|
4939 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/apacheconf" {
|
4940 | const language: any;
|
4941 | export default language;
|
4942 | }
|
4943 |
|
4944 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/apl" {
|
4945 | const language: any;
|
4946 | export default language;
|
4947 | }
|
4948 |
|
4949 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/applescript" {
|
4950 | const language: any;
|
4951 | export default language;
|
4952 | }
|
4953 |
|
4954 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/aql" {
|
4955 | const language: any;
|
4956 | export default language;
|
4957 | }
|
4958 |
|
4959 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/arduino" {
|
4960 | const language: any;
|
4961 | export default language;
|
4962 | }
|
4963 |
|
4964 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/arff" {
|
4965 | const language: any;
|
4966 | export default language;
|
4967 | }
|
4968 |
|
4969 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/asciidoc" {
|
4970 | const language: any;
|
4971 | export default language;
|
4972 | }
|
4973 |
|
4974 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/asm6502" {
|
4975 | const language: any;
|
4976 | export default language;
|
4977 | }
|
4978 |
|
4979 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/aspnet" {
|
4980 | const language: any;
|
4981 | export default language;
|
4982 | }
|
4983 |
|
4984 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/autohotkey" {
|
4985 | const language: any;
|
4986 | export default language;
|
4987 | }
|
4988 |
|
4989 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/autoit" {
|
4990 | const language: any;
|
4991 | export default language;
|
4992 | }
|
4993 |
|
4994 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/bash" {
|
4995 | const language: any;
|
4996 | export default language;
|
4997 | }
|
4998 |
|
4999 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/basic" {
|
5000 | const language: any;
|
5001 | export default language;
|
5002 | }
|
5003 |
|
5004 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/batch" {
|
5005 | const language: any;
|
5006 | export default language;
|
5007 | }
|
5008 |
|
5009 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/bbcode" {
|
5010 | const language: any;
|
5011 | export default language;
|
5012 | }
|
5013 |
|
5014 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/bison" {
|
5015 | const language: any;
|
5016 | export default language;
|
5017 | }
|
5018 |
|
5019 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/bnf" {
|
5020 | const language: any;
|
5021 | export default language;
|
5022 | }
|
5023 |
|
5024 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/brainfuck" {
|
5025 | const language: any;
|
5026 | export default language;
|
5027 | }
|
5028 |
|
5029 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/brightscript" {
|
5030 | const language: any;
|
5031 | export default language;
|
5032 | }
|
5033 |
|
5034 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/bro" {
|
5035 | const language: any;
|
5036 | export default language;
|
5037 | }
|
5038 |
|
5039 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/c" {
|
5040 | const language: any;
|
5041 | export default language;
|
5042 | }
|
5043 |
|
5044 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/cil" {
|
5045 | const language: any;
|
5046 | export default language;
|
5047 | }
|
5048 |
|
5049 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/clike" {
|
5050 | const language: any;
|
5051 | export default language;
|
5052 | }
|
5053 |
|
5054 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/clojure" {
|
5055 | const language: any;
|
5056 | export default language;
|
5057 | }
|
5058 |
|
5059 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/cmake" {
|
5060 | const language: any;
|
5061 | export default language;
|
5062 | }
|
5063 |
|
5064 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/coffeescript" {
|
5065 | const language: any;
|
5066 | export default language;
|
5067 | }
|
5068 |
|
5069 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/concurnas" {
|
5070 | const language: any;
|
5071 | export default language;
|
5072 | }
|
5073 |
|
5074 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/core" {
|
5075 | const language: any;
|
5076 | export default language;
|
5077 | }
|
5078 |
|
5079 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/cpp" {
|
5080 | const language: any;
|
5081 | export default language;
|
5082 | }
|
5083 |
|
5084 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/crystal" {
|
5085 | const language: any;
|
5086 | export default language;
|
5087 | }
|
5088 |
|
5089 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/csharp" {
|
5090 | const language: any;
|
5091 | export default language;
|
5092 | }
|
5093 |
|
5094 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/csp" {
|
5095 | const language: any;
|
5096 | export default language;
|
5097 | }
|
5098 |
|
5099 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/css-extras" {
|
5100 | const language: any;
|
5101 | export default language;
|
5102 | }
|
5103 |
|
5104 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/css" {
|
5105 | const language: any;
|
5106 | export default language;
|
5107 | }
|
5108 |
|
5109 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/cypher" {
|
5110 | const language: any;
|
5111 | export default language;
|
5112 | }
|
5113 |
|
5114 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/d" {
|
5115 | const language: any;
|
5116 | export default language;
|
5117 | }
|
5118 |
|
5119 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/dart" {
|
5120 | const language: any;
|
5121 | export default language;
|
5122 | }
|
5123 |
|
5124 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/dax" {
|
5125 | const language: any;
|
5126 | export default language;
|
5127 | }
|
5128 |
|
5129 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/dhall" {
|
5130 | const language: any;
|
5131 | export default language;
|
5132 | }
|
5133 |
|
5134 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/diff" {
|
5135 | const language: any;
|
5136 | export default language;
|
5137 | }
|
5138 |
|
5139 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/django" {
|
5140 | const language: any;
|
5141 | export default language;
|
5142 | }
|
5143 |
|
5144 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/dns-zone-file" {
|
5145 | const language: any;
|
5146 | export default language;
|
5147 | }
|
5148 |
|
5149 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/docker" {
|
5150 | const language: any;
|
5151 | export default language;
|
5152 | }
|
5153 |
|
5154 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/ebnf" {
|
5155 | const language: any;
|
5156 | export default language;
|
5157 | }
|
5158 |
|
5159 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/editorconfig" {
|
5160 | const language: any;
|
5161 | export default language;
|
5162 | }
|
5163 |
|
5164 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/eiffel" {
|
5165 | const language: any;
|
5166 | export default language;
|
5167 | }
|
5168 |
|
5169 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/ejs" {
|
5170 | const language: any;
|
5171 | export default language;
|
5172 | }
|
5173 |
|
5174 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/elixir" {
|
5175 | const language: any;
|
5176 | export default language;
|
5177 | }
|
5178 |
|
5179 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/elm" {
|
5180 | const language: any;
|
5181 | export default language;
|
5182 | }
|
5183 |
|
5184 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/erb" {
|
5185 | const language: any;
|
5186 | export default language;
|
5187 | }
|
5188 |
|
5189 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/erlang" {
|
5190 | const language: any;
|
5191 | export default language;
|
5192 | }
|
5193 |
|
5194 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/etlua" {
|
5195 | const language: any;
|
5196 | export default language;
|
5197 | }
|
5198 |
|
5199 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/excel-formula" {
|
5200 | const language: any;
|
5201 | export default language;
|
5202 | }
|
5203 |
|
5204 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/factor" {
|
5205 | const language: any;
|
5206 | export default language;
|
5207 | }
|
5208 |
|
5209 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/firestore-security-rules" {
|
5210 | const language: any;
|
5211 | export default language;
|
5212 | }
|
5213 |
|
5214 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/flow" {
|
5215 | const language: any;
|
5216 | export default language;
|
5217 | }
|
5218 |
|
5219 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/fortran" {
|
5220 | const language: any;
|
5221 | export default language;
|
5222 | }
|
5223 |
|
5224 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/fsharp" {
|
5225 | const language: any;
|
5226 | export default language;
|
5227 | }
|
5228 |
|
5229 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/ftl" {
|
5230 | const language: any;
|
5231 | export default language;
|
5232 | }
|
5233 |
|
5234 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/gcode" {
|
5235 | const language: any;
|
5236 | export default language;
|
5237 | }
|
5238 |
|
5239 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/gdscript" {
|
5240 | const language: any;
|
5241 | export default language;
|
5242 | }
|
5243 |
|
5244 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/gedcom" {
|
5245 | const language: any;
|
5246 | export default language;
|
5247 | }
|
5248 |
|
5249 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/gherkin" {
|
5250 | const language: any;
|
5251 | export default language;
|
5252 | }
|
5253 |
|
5254 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/git" {
|
5255 | const language: any;
|
5256 | export default language;
|
5257 | }
|
5258 |
|
5259 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/glsl" {
|
5260 | const language: any;
|
5261 | export default language;
|
5262 | }
|
5263 |
|
5264 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/gml" {
|
5265 | const language: any;
|
5266 | export default language;
|
5267 | }
|
5268 |
|
5269 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/go" {
|
5270 | const language: any;
|
5271 | export default language;
|
5272 | }
|
5273 |
|
5274 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/graphql" {
|
5275 | const language: any;
|
5276 | export default language;
|
5277 | }
|
5278 |
|
5279 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/groovy" {
|
5280 | const language: any;
|
5281 | export default language;
|
5282 | }
|
5283 |
|
5284 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/haml" {
|
5285 | const language: any;
|
5286 | export default language;
|
5287 | }
|
5288 |
|
5289 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/handlebars" {
|
5290 | const language: any;
|
5291 | export default language;
|
5292 | }
|
5293 |
|
5294 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/haskell" {
|
5295 | const language: any;
|
5296 | export default language;
|
5297 | }
|
5298 |
|
5299 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/haxe" {
|
5300 | const language: any;
|
5301 | export default language;
|
5302 | }
|
5303 |
|
5304 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/hcl" {
|
5305 | const language: any;
|
5306 | export default language;
|
5307 | }
|
5308 |
|
5309 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/hlsl" {
|
5310 | const language: any;
|
5311 | export default language;
|
5312 | }
|
5313 |
|
5314 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/hpkp" {
|
5315 | const language: any;
|
5316 | export default language;
|
5317 | }
|
5318 |
|
5319 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/hsts" {
|
5320 | const language: any;
|
5321 | export default language;
|
5322 | }
|
5323 |
|
5324 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/http" {
|
5325 | const language: any;
|
5326 | export default language;
|
5327 | }
|
5328 |
|
5329 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/ichigojam" {
|
5330 | const language: any;
|
5331 | export default language;
|
5332 | }
|
5333 |
|
5334 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/icon" {
|
5335 | const language: any;
|
5336 | export default language;
|
5337 | }
|
5338 |
|
5339 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/iecst" {
|
5340 | const language: any;
|
5341 | export default language;
|
5342 | }
|
5343 |
|
5344 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/ignore" {
|
5345 | const language: any;
|
5346 | export default language;
|
5347 | }
|
5348 |
|
5349 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/inform7" {
|
5350 | const language: any;
|
5351 | export default language;
|
5352 | }
|
5353 |
|
5354 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/ini" {
|
5355 | const language: any;
|
5356 | export default language;
|
5357 | }
|
5358 |
|
5359 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/io" {
|
5360 | const language: any;
|
5361 | export default language;
|
5362 | }
|
5363 |
|
5364 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/j" {
|
5365 | const language: any;
|
5366 | export default language;
|
5367 | }
|
5368 |
|
5369 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/java" {
|
5370 | const language: any;
|
5371 | export default language;
|
5372 | }
|
5373 |
|
5374 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/javadoc" {
|
5375 | const language: any;
|
5376 | export default language;
|
5377 | }
|
5378 |
|
5379 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/javadoclike" {
|
5380 | const language: any;
|
5381 | export default language;
|
5382 | }
|
5383 |
|
5384 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/javascript" {
|
5385 | const language: any;
|
5386 | export default language;
|
5387 | }
|
5388 |
|
5389 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/javastacktrace" {
|
5390 | const language: any;
|
5391 | export default language;
|
5392 | }
|
5393 |
|
5394 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/jolie" {
|
5395 | const language: any;
|
5396 | export default language;
|
5397 | }
|
5398 |
|
5399 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/jq" {
|
5400 | const language: any;
|
5401 | export default language;
|
5402 | }
|
5403 |
|
5404 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/js-extras" {
|
5405 | const language: any;
|
5406 | export default language;
|
5407 | }
|
5408 |
|
5409 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/js-templates" {
|
5410 | const language: any;
|
5411 | export default language;
|
5412 | }
|
5413 |
|
5414 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/jsdoc" {
|
5415 | const language: any;
|
5416 | export default language;
|
5417 | }
|
5418 |
|
5419 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/json" {
|
5420 | const language: any;
|
5421 | export default language;
|
5422 | }
|
5423 |
|
5424 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/json5" {
|
5425 | const language: any;
|
5426 | export default language;
|
5427 | }
|
5428 |
|
5429 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/jsonp" {
|
5430 | const language: any;
|
5431 | export default language;
|
5432 | }
|
5433 |
|
5434 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/jsstacktrace" {
|
5435 | const language: any;
|
5436 | export default language;
|
5437 | }
|
5438 |
|
5439 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/jsx" {
|
5440 | const language: any;
|
5441 | export default language;
|
5442 | }
|
5443 |
|
5444 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/julia" {
|
5445 | const language: any;
|
5446 | export default language;
|
5447 | }
|
5448 |
|
5449 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/keyman" {
|
5450 | const language: any;
|
5451 | export default language;
|
5452 | }
|
5453 |
|
5454 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/kotlin" {
|
5455 | const language: any;
|
5456 | export default language;
|
5457 | }
|
5458 |
|
5459 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/latex" {
|
5460 | const language: any;
|
5461 | export default language;
|
5462 | }
|
5463 |
|
5464 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/latte" {
|
5465 | const language: any;
|
5466 | export default language;
|
5467 | }
|
5468 |
|
5469 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/less" {
|
5470 | const language: any;
|
5471 | export default language;
|
5472 | }
|
5473 |
|
5474 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/lilypond" {
|
5475 | const language: any;
|
5476 | export default language;
|
5477 | }
|
5478 |
|
5479 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/liquid" {
|
5480 | const language: any;
|
5481 | export default language;
|
5482 | }
|
5483 |
|
5484 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/lisp" {
|
5485 | const language: any;
|
5486 | export default language;
|
5487 | }
|
5488 |
|
5489 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/livescript" {
|
5490 | const language: any;
|
5491 | export default language;
|
5492 | }
|
5493 |
|
5494 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/llvm" {
|
5495 | const language: any;
|
5496 | export default language;
|
5497 | }
|
5498 |
|
5499 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/lolcode" {
|
5500 | const language: any;
|
5501 | export default language;
|
5502 | }
|
5503 |
|
5504 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/lua" {
|
5505 | const language: any;
|
5506 | export default language;
|
5507 | }
|
5508 |
|
5509 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/makefile" {
|
5510 | const language: any;
|
5511 | export default language;
|
5512 | }
|
5513 |
|
5514 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/markdown" {
|
5515 | const language: any;
|
5516 | export default language;
|
5517 | }
|
5518 |
|
5519 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/markup-templating" {
|
5520 | const language: any;
|
5521 | export default language;
|
5522 | }
|
5523 |
|
5524 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/markup" {
|
5525 | const language: any;
|
5526 | export default language;
|
5527 | }
|
5528 |
|
5529 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/matlab" {
|
5530 | const language: any;
|
5531 | export default language;
|
5532 | }
|
5533 |
|
5534 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/mel" {
|
5535 | const language: any;
|
5536 | export default language;
|
5537 | }
|
5538 |
|
5539 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/mizar" {
|
5540 | const language: any;
|
5541 | export default language;
|
5542 | }
|
5543 |
|
5544 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/monkey" {
|
5545 | const language: any;
|
5546 | export default language;
|
5547 | }
|
5548 |
|
5549 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/moonscript" {
|
5550 | const language: any;
|
5551 | export default language;
|
5552 | }
|
5553 |
|
5554 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/n1ql" {
|
5555 | const language: any;
|
5556 | export default language;
|
5557 | }
|
5558 |
|
5559 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/n4js" {
|
5560 | const language: any;
|
5561 | export default language;
|
5562 | }
|
5563 |
|
5564 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/nand2tetris-hdl" {
|
5565 | const language: any;
|
5566 | export default language;
|
5567 | }
|
5568 |
|
5569 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/nasm" {
|
5570 | const language: any;
|
5571 | export default language;
|
5572 | }
|
5573 |
|
5574 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/neon" {
|
5575 | const language: any;
|
5576 | export default language;
|
5577 | }
|
5578 |
|
5579 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/nginx" {
|
5580 | const language: any;
|
5581 | export default language;
|
5582 | }
|
5583 |
|
5584 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/nim" {
|
5585 | const language: any;
|
5586 | export default language;
|
5587 | }
|
5588 |
|
5589 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/nix" {
|
5590 | const language: any;
|
5591 | export default language;
|
5592 | }
|
5593 |
|
5594 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/nsis" {
|
5595 | const language: any;
|
5596 | export default language;
|
5597 | }
|
5598 |
|
5599 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/objectivec" {
|
5600 | const language: any;
|
5601 | export default language;
|
5602 | }
|
5603 |
|
5604 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/ocaml" {
|
5605 | const language: any;
|
5606 | export default language;
|
5607 | }
|
5608 |
|
5609 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/opencl" {
|
5610 | const language: any;
|
5611 | export default language;
|
5612 | }
|
5613 |
|
5614 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/oz" {
|
5615 | const language: any;
|
5616 | export default language;
|
5617 | }
|
5618 |
|
5619 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/parigp" {
|
5620 | const language: any;
|
5621 | export default language;
|
5622 | }
|
5623 |
|
5624 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/parser" {
|
5625 | const language: any;
|
5626 | export default language;
|
5627 | }
|
5628 |
|
5629 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/pascal" {
|
5630 | const language: any;
|
5631 | export default language;
|
5632 | }
|
5633 |
|
5634 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/pascaligo" {
|
5635 | const language: any;
|
5636 | export default language;
|
5637 | }
|
5638 |
|
5639 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/pcaxis" {
|
5640 | const language: any;
|
5641 | export default language;
|
5642 | }
|
5643 |
|
5644 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/peoplecode" {
|
5645 | const language: any;
|
5646 | export default language;
|
5647 | }
|
5648 |
|
5649 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/perl" {
|
5650 | const language: any;
|
5651 | export default language;
|
5652 | }
|
5653 |
|
5654 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/php-extras" {
|
5655 | const language: any;
|
5656 | export default language;
|
5657 | }
|
5658 |
|
5659 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/php" {
|
5660 | const language: any;
|
5661 | export default language;
|
5662 | }
|
5663 |
|
5664 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/plsql" {
|
5665 | const language: any;
|
5666 | export default language;
|
5667 | }
|
5668 |
|
5669 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/powerquery" {
|
5670 | const language: any;
|
5671 | export default language;
|
5672 | }
|
5673 |
|
5674 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/powershell" {
|
5675 | const language: any;
|
5676 | export default language;
|
5677 | }
|
5678 |
|
5679 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/processing" {
|
5680 | const language: any;
|
5681 | export default language;
|
5682 | }
|
5683 |
|
5684 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/prolog" {
|
5685 | const language: any;
|
5686 | export default language;
|
5687 | }
|
5688 |
|
5689 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/properties" {
|
5690 | const language: any;
|
5691 | export default language;
|
5692 | }
|
5693 |
|
5694 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/protobuf" {
|
5695 | const language: any;
|
5696 | export default language;
|
5697 | }
|
5698 |
|
5699 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/pug" {
|
5700 | const language: any;
|
5701 | export default language;
|
5702 | }
|
5703 |
|
5704 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/puppet" {
|
5705 | const language: any;
|
5706 | export default language;
|
5707 | }
|
5708 |
|
5709 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/pure" {
|
5710 | const language: any;
|
5711 | export default language;
|
5712 | }
|
5713 |
|
5714 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/purebasic" {
|
5715 | const language: any;
|
5716 | export default language;
|
5717 | }
|
5718 |
|
5719 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/python" {
|
5720 | const language: any;
|
5721 | export default language;
|
5722 | }
|
5723 |
|
5724 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/q" {
|
5725 | const language: any;
|
5726 | export default language;
|
5727 | }
|
5728 |
|
5729 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/qml" {
|
5730 | const language: any;
|
5731 | export default language;
|
5732 | }
|
5733 |
|
5734 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/qore" {
|
5735 | const language: any;
|
5736 | export default language;
|
5737 | }
|
5738 |
|
5739 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/r" {
|
5740 | const language: any;
|
5741 | export default language;
|
5742 | }
|
5743 |
|
5744 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/racket" {
|
5745 | const language: any;
|
5746 | export default language;
|
5747 | }
|
5748 |
|
5749 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/reason" {
|
5750 | const language: any;
|
5751 | export default language;
|
5752 | }
|
5753 |
|
5754 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/regex" {
|
5755 | const language: any;
|
5756 | export default language;
|
5757 | }
|
5758 |
|
5759 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/renpy" {
|
5760 | const language: any;
|
5761 | export default language;
|
5762 | }
|
5763 |
|
5764 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/rest" {
|
5765 | const language: any;
|
5766 | export default language;
|
5767 | }
|
5768 |
|
5769 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/rip" {
|
5770 | const language: any;
|
5771 | export default language;
|
5772 | }
|
5773 |
|
5774 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/roboconf" {
|
5775 | const language: any;
|
5776 | export default language;
|
5777 | }
|
5778 |
|
5779 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/robotframework" {
|
5780 | const language: any;
|
5781 | export default language;
|
5782 | }
|
5783 |
|
5784 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/ruby" {
|
5785 | const language: any;
|
5786 | export default language;
|
5787 | }
|
5788 |
|
5789 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/rust" {
|
5790 | const language: any;
|
5791 | export default language;
|
5792 | }
|
5793 |
|
5794 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/sas" {
|
5795 | const language: any;
|
5796 | export default language;
|
5797 | }
|
5798 |
|
5799 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/sass" {
|
5800 | const language: any;
|
5801 | export default language;
|
5802 | }
|
5803 |
|
5804 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/scala" {
|
5805 | const language: any;
|
5806 | export default language;
|
5807 | }
|
5808 |
|
5809 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/scheme" {
|
5810 | const language: any;
|
5811 | export default language;
|
5812 | }
|
5813 |
|
5814 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/scss" {
|
5815 | const language: any;
|
5816 | export default language;
|
5817 | }
|
5818 |
|
5819 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/shell-session" {
|
5820 | const language: any;
|
5821 | export default language;
|
5822 | }
|
5823 |
|
5824 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/smali" {
|
5825 | const language: any;
|
5826 | export default language;
|
5827 | }
|
5828 |
|
5829 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/smalltalk" {
|
5830 | const language: any;
|
5831 | export default language;
|
5832 | }
|
5833 |
|
5834 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/smarty" {
|
5835 | const language: any;
|
5836 | export default language;
|
5837 | }
|
5838 |
|
5839 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/solidity" {
|
5840 | const language: any;
|
5841 | export default language;
|
5842 | }
|
5843 |
|
5844 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/solution-file" {
|
5845 | const language: any;
|
5846 | export default language;
|
5847 | }
|
5848 |
|
5849 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/soy" {
|
5850 | const language: any;
|
5851 | export default language;
|
5852 | }
|
5853 |
|
5854 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/sparql" {
|
5855 | const language: any;
|
5856 | export default language;
|
5857 | }
|
5858 |
|
5859 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/splunk-spl" {
|
5860 | const language: any;
|
5861 | export default language;
|
5862 | }
|
5863 |
|
5864 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/sqf" {
|
5865 | const language: any;
|
5866 | export default language;
|
5867 | }
|
5868 |
|
5869 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/sql" {
|
5870 | const language: any;
|
5871 | export default language;
|
5872 | }
|
5873 |
|
5874 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/stylus" {
|
5875 | const language: any;
|
5876 | export default language;
|
5877 | }
|
5878 |
|
5879 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/swift" {
|
5880 | const language: any;
|
5881 | export default language;
|
5882 | }
|
5883 |
|
5884 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/t4-cs" {
|
5885 | const language: any;
|
5886 | export default language;
|
5887 | }
|
5888 |
|
5889 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/t4-templating" {
|
5890 | const language: any;
|
5891 | export default language;
|
5892 | }
|
5893 |
|
5894 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/t4-vb" {
|
5895 | const language: any;
|
5896 | export default language;
|
5897 | }
|
5898 |
|
5899 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/tap" {
|
5900 | const language: any;
|
5901 | export default language;
|
5902 | }
|
5903 |
|
5904 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/tcl" {
|
5905 | const language: any;
|
5906 | export default language;
|
5907 | }
|
5908 |
|
5909 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/textile" {
|
5910 | const language: any;
|
5911 | export default language;
|
5912 | }
|
5913 |
|
5914 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/toml" {
|
5915 | const language: any;
|
5916 | export default language;
|
5917 | }
|
5918 |
|
5919 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/tsx" {
|
5920 | const language: any;
|
5921 | export default language;
|
5922 | }
|
5923 |
|
5924 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/tt2" {
|
5925 | const language: any;
|
5926 | export default language;
|
5927 | }
|
5928 |
|
5929 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/turtle" {
|
5930 | const language: any;
|
5931 | export default language;
|
5932 | }
|
5933 |
|
5934 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/twig" {
|
5935 | const language: any;
|
5936 | export default language;
|
5937 | }
|
5938 |
|
5939 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/typescript" {
|
5940 | const language: any;
|
5941 | export default language;
|
5942 | }
|
5943 |
|
5944 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/unrealscript" {
|
5945 | const language: any;
|
5946 | export default language;
|
5947 | }
|
5948 |
|
5949 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/vala" {
|
5950 | const language: any;
|
5951 | export default language;
|
5952 | }
|
5953 |
|
5954 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/vbnet" {
|
5955 | const language: any;
|
5956 | export default language;
|
5957 | }
|
5958 |
|
5959 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/velocity" {
|
5960 | const language: any;
|
5961 | export default language;
|
5962 | }
|
5963 |
|
5964 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/verilog" {
|
5965 | const language: any;
|
5966 | export default language;
|
5967 | }
|
5968 |
|
5969 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/vhdl" {
|
5970 | const language: any;
|
5971 | export default language;
|
5972 | }
|
5973 |
|
5974 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/vim" {
|
5975 | const language: any;
|
5976 | export default language;
|
5977 | }
|
5978 |
|
5979 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/visual-basic" {
|
5980 | const language: any;
|
5981 | export default language;
|
5982 | }
|
5983 |
|
5984 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/warpscript" {
|
5985 | const language: any;
|
5986 | export default language;
|
5987 | }
|
5988 |
|
5989 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/wasm" {
|
5990 | const language: any;
|
5991 | export default language;
|
5992 | }
|
5993 |
|
5994 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/wiki" {
|
5995 | const language: any;
|
5996 | export default language;
|
5997 | }
|
5998 |
|
5999 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/xeora" {
|
6000 | const language: any;
|
6001 | export default language;
|
6002 | }
|
6003 |
|
6004 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/xml-doc" {
|
6005 | const language: any;
|
6006 | export default language;
|
6007 | }
|
6008 |
|
6009 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/xojo" {
|
6010 | const language: any;
|
6011 | export default language;
|
6012 | }
|
6013 |
|
6014 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/xquery" {
|
6015 | const language: any;
|
6016 | export default language;
|
6017 | }
|
6018 |
|
6019 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/yaml" {
|
6020 | const language: any;
|
6021 | export default language;
|
6022 | }
|
6023 |
|
6024 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/yang" {
|
6025 | const language: any;
|
6026 | export default language;
|
6027 | }
|
6028 |
|
6029 | declare module "react-syntax-highlighter/dist/cjs/languages/prism/zig" {
|
6030 | const language: any;
|
6031 | export default language;
|
6032 | }
|
6033 |
|