UNPKG

lean4-code-actions

Version:

Refactorings and snippets for Lean 4

17 lines (12 loc) 286 B
/** * These are partial types */ export interface LeanClient { sendRequest: (method: string, params: unknown) => Promise<unknown> } export interface LeanClientProvider { getActiveClient: () => LeanClient } export interface LeanExports { clientProvider: LeanClientProvider }