blob: 663bc0885eca3931b000e628e11e71d69189dfb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
export type PrismLanguages =
| 'apacheconf'
| 'bash'
| 'css'
| 'diff'
| 'docker'
| 'editorconfig'
| 'ejs'
| 'git'
| 'graphql'
| 'html'
| 'ignore'
| 'ini'
| 'javascript'
| 'jsdoc'
| 'json'
| 'jsx'
| 'makefile'
| 'markup'
| 'php'
| 'phpdoc'
| 'regex'
| 'scss'
| 'shell-session'
| 'smarty'
| 'tcl'
| 'toml'
| 'tsx'
| 'twig'
| 'yaml';
export type PrismDefaultPlugins =
| 'autoloader'
| 'color-scheme'
| 'copy-to-clipboard'
| 'match-braces'
| 'normalize-whitespace'
| 'show-language'
| 'toolbar';
export type PrismPlugins =
| 'command-line'
| 'diff-highlight'
| 'inline-color'
| 'line-highlight'
| 'line-numbers';
export type PrismProviderProps = {
language: PrismLanguages;
plugins: PrismPlugins[];
};
|