DefinitelyTyped/types/atom-keymap
2017-10-06 14:03:03 -07:00
..
v5 Enable strictFunctionTypes (#20373) 2017-10-06 14:03:03 -07:00
.editorconfig Update the Atom type definitions. (#20146) 2017-10-02 10:41:57 -07:00
atom-keymap-tests.ts Update the Atom type definitions. (#20146) 2017-10-02 10:41:57 -07:00
index.d.ts Update the Atom type definitions. (#20146) 2017-10-02 10:41:57 -07:00
README.md Update the Atom type definitions. (#20146) 2017-10-02 10:41:57 -07:00
tsconfig.json Enable strictFunctionTypes (#20373) 2017-10-06 14:03:03 -07:00
tslint.json Update the Atom type definitions. (#20146) 2017-10-02 10:41:57 -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) {}