mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-16 12:09:24 +08:00
849 B
849 B
First Mate Type Definitions
TypeScript type definitions for First Mate, which is published as "first-mate" on NPM.
Usage Notes
Exports
The three classes exported from this module are: Grammar, GrammarRegistry, and ScopeSelector.
import { Grammar, GrammarRegistry, ScopeSelector } from "first-mate";
let selector = new ScopeSelector("a | b");
The FirstMate Namespace
Many of the types used by First Mate can be referenced from the FirstMate namespace.
function example(grammar: FirstMate.Grammar) {}