Remove export and import. Fixes cannot find name compile errors.
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
export enum KeyModifiers {
|
enum KeyModifiers {
|
||||||
leftCtrl = 1 << 0,
|
leftCtrl = 1 << 0,
|
||||||
leftShift = 1 << 1,
|
leftShift = 1 << 1,
|
||||||
leftAlt = 1 << 2,
|
leftAlt = 1 << 2,
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
import {KeyModifiers} from './KeystrokeModifiersAction';
|
|
||||||
|
|
||||||
class KeystrokeWithModifiersAction extends KeyAction {
|
class KeystrokeWithModifiersAction extends KeyAction {
|
||||||
|
|
||||||
// @assertUInt8
|
// @assertUInt8
|
||||||
|
|||||||
Reference in New Issue
Block a user