Files
DefinitelyTyped/types/atom-keymap
Glen M ea4008d4e8 Add definitions for atom-mocha-test-runner. (#20380)
* Add definitions for atom-mocha-test-runner.

* Remove the editorconfig.

* Atom: remove editorconfigs, linebreak-style, and all lint disables.
2017-10-09 15:43:18 -07:00
..

Atom Keymap Type Definitions

TypeScript type definitions for Atom Keymap, which is published as "atom-keymap" on NPM.

Usage Notes

Exports

This module has a single entity as its export: the KeymapManager class. The require syntax is typically used to import modules like this.

import KeymapManager = require("atom-keymap");

The AtomKeymap Namespace

Many of the types used by Atom Keymap can be referenced from the AtomKeymap namespace.

function example(keybind: AtomKeymap.KeyBinding) {}