Rename .js/.jsx to .ts/.tsx
This commit is contained in:
parent
257162e5b6
commit
c60d0e7392
151 changed files with 0 additions and 0 deletions
31
src/content/actions/index.ts
Normal file
31
src/content/actions/index.ts
Normal file
|
@ -0,0 +1,31 @@
|
|||
export default {
|
||||
// Enable/disable
|
||||
ADDON_SET_ENABLED: 'addon.set.enabled',
|
||||
|
||||
// Settings
|
||||
SETTING_SET: 'setting.set',
|
||||
|
||||
// User input
|
||||
INPUT_KEY_PRESS: 'input.key.press',
|
||||
INPUT_CLEAR_KEYS: 'input.clear.keys',
|
||||
|
||||
// Completion
|
||||
COMPLETION_SET_ITEMS: 'completion.set.items',
|
||||
COMPLETION_SELECT_NEXT: 'completions.select.next',
|
||||
COMPLETION_SELECT_PREV: 'completions.select.prev',
|
||||
|
||||
// Follow
|
||||
FOLLOW_CONTROLLER_ENABLE: 'follow.controller.enable',
|
||||
FOLLOW_CONTROLLER_DISABLE: 'follow.controller.disable',
|
||||
FOLLOW_CONTROLLER_KEY_PRESS: 'follow.controller.key.press',
|
||||
FOLLOW_CONTROLLER_BACKSPACE: 'follow.controller.backspace',
|
||||
|
||||
// Find
|
||||
FIND_SET_KEYWORD: 'find.set.keyword',
|
||||
|
||||
// Mark
|
||||
MARK_START_SET: 'mark.start.set',
|
||||
MARK_START_JUMP: 'mark.start.jump',
|
||||
MARK_CANCEL: 'mark.cancel',
|
||||
MARK_SET_LOCAL: 'mark.set.local',
|
||||
};
|
Reference in a new issue