MCPcopy
hub / github.com/iamcco/markdown-preview.nvim / IApp

Interface IApp

src/attach/index.ts:5–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3const logger = require('../util/logger')('attach') // tslint:disable-line
4
5interface IApp {
6 refreshPage: ((
7 param: {
8 bufnr: number | string
9 data: any
10 }
11 ) => void)
12 closePage: ((
13 params: {
14 bufnr: number | string
15 }
16 ) => void)
17 closeAllPages: (() => void)
18 openBrowser: ((
19 params: {
20 bufnr: number | string
21 }
22 ) => void)
23}
24
25interface IPlugin {
26 init: ((app: IApp) => void)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected