Replace Ace editor with CodeMirror

This commit is contained in:
Matthew Penner 2020-09-13 17:17:40 -06:00
parent 79f616f791
commit 9d7f4f954e
7 changed files with 325 additions and 118 deletions

View file

@ -1,3 +1,13 @@
declare const modes: Record<string, string>;
export interface Mode {
name: string,
mime: string,
mimes?: string[],
mode: string,
ext: string[],
alias?: string[],
file?: RegExp,
}
declare const modes: Mode[];
export default modes;