-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from Sczlog/machine-matcher
enhance matcher, add dragging, special-key and file-input event.
- Loading branch information
Showing
22 changed files
with
917 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,17 @@ | ||
export * from './matcher'; | ||
export * from './observers'; | ||
export * from './types'; | ||
export * from './recorder'; | ||
export * from './builtin'; | ||
export * as Matcher from './matcher'; | ||
export * as Observer from './observers'; | ||
export * as Types from './types'; | ||
import * as BaseRecorder from './recorder'; | ||
import * as BuiltInRecorder from './builtin'; | ||
|
||
export const Recorder = { | ||
Recorder: BaseRecorder, | ||
BuiltInRecorder, | ||
}; | ||
|
||
import * as UtilsFn from './util/fn'; | ||
import * as Throttler from './util/throttler'; | ||
import * as Metaquerier from './util/metaquerier'; | ||
import * as EntryReader from './util/entry-reader'; | ||
|
||
export const Utils = { UtilsFn, Throttler, Metaquerier, EntryReader }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.