derw
Version:
An Elm-inspired language that transpiles to TypeScript
6 lines (5 loc) • 343 B
TypeScript
import { Block, ContextModule } from "../types";
export declare function topLevelNamesPerBlock(block: Block): string[];
export declare function definedNamesPerBlock(block: Block): string[];
export declare function namesPerBlock(block: Block): string[];
export declare function addMissingNamesSuggestions(module: ContextModule): ContextModule;