mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-23 17:31:11 +01:00
32 lines
451 B
Go
32 lines
451 B
Go
export declare const getLanguageByFileName: (
|
|
name?: string
|
|
) =>
|
|
| 'json'
|
|
| 'html'
|
|
| 'text'
|
|
| 'r'
|
|
| 'javascript'
|
|
| 'typescript'
|
|
| 'python'
|
|
| 'java'
|
|
| 'go'
|
|
| 'csharp'
|
|
| 'php'
|
|
| 'ruby'
|
|
| 'rust'
|
|
| 'cpp'
|
|
| 'scala'
|
|
| 'shell'
|
|
| 'bat'
|
|
| 'powershell'
|
|
| 'sql'
|
|
| 'css'
|
|
| 'less'
|
|
| 'scss'
|
|
| 'yaml'
|
|
| 'xml'
|
|
| 'markdown'
|
|
| 'ini'
|
|
| 'dockerfile';
|
|
export declare const UPDATE_MARKDOWN_EVENT = 'update-markdown';
|