aran
Version:
JavaScript instrumenter
18 lines (14 loc) • 411 B
TypeScript
import type { ModuleDeclaration, Statement, SwitchCase } from "estree-sentry";
import type { Hash } from "../hash.d.ts";
import type { Tree } from "../../util/tree.d.ts";
export type CompletionNode<X> =
| Statement<X>
| ModuleDeclaration<X>
| SwitchCase<X>;
export type CompletionResult = {
previous_maybe_last: boolean;
hashes: Tree<Hash>;
};
export type Completion = {
[key in Hash]?: null;
};