mirror of
https://github.com/anomalyco/opencode.git
synced 2026-08-13 08:03:33 +00:00
chore: generate
This commit is contained in:
parent
8265621d48
commit
a35c278424
1 changed files with 5 additions and 1 deletions
|
|
@ -13,7 +13,11 @@ import { Archive } from "../util/archive"
|
|||
|
||||
export namespace LSPServer {
|
||||
const log = Log.create({ service: "lsp.server" })
|
||||
const pathExists = async (p: string) => fs.stat(p).then(() => true).catch(() => false)
|
||||
const pathExists = async (p: string) =>
|
||||
fs
|
||||
.stat(p)
|
||||
.then(() => true)
|
||||
.catch(() => false)
|
||||
|
||||
export interface Handle {
|
||||
process: ChildProcessWithoutNullStreams
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue