fix:file case error

This commit is contained in:
黄云飞
2022-07-01 17:45:32 +08:00
parent 51b275c8a9
commit a55b23dc2a
2 changed files with 17 additions and 1 deletions
@@ -1,6 +1,6 @@
import { IElement } from '../../../../interface/Element'
import { ImageParticle } from '../ImageParticle'
import { LaTexSVG, LaTexUtils } from './utils/LaTeXUtils'
import { LaTexSVG, LaTexUtils } from './utils/LaTexUtils'
export class LaTexParticle extends ImageParticle {
+16
View File
@@ -0,0 +1,16 @@
export enum KeyMap {
Delete = 'Delete',
Backspace = 'Backspace',
Enter = 'Enter',
Left = 'ArrowLeft',
Right = 'ArrowRight',
Up = 'ArrowUp',
Down = 'ArrowDown',
ESC = 'Escape',
A = 'a',
C = 'c',
S = 's',
X = 'x',
Y = 'y',
Z = 'z'
}