Files
newt/playground/src/newt.d.ts
Steve Dunham f5a9aae070
Some checks failed
Publish Playground / build (push) Has been cancelled
Publish Playground / deploy (push) Has been cancelled
also show scheme code in web playground
2026-03-21 11:39:29 -07:00

9 lines
498 B
TypeScript

import { Diagnostic, HoverResult, CodeAction } from './ipc'
export function LSP_updateFile(name: string, content: string): any;
export function LSP_checkFile(name: string): Diagnostic[];
export function LSP_hoverInfo(name: string, row: number, col: number): HoverResult | boolean | null;
export function LSP_codeActionInfo(name: string, row: number, col: number): CodeAction[] | null;
export function LSP_compileJS(name: string): string;
export function LSP_compileToScheme(name: string): string;