mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-17 13:55:50 +00:00
16 lines
428 B
TypeScript
16 lines
428 B
TypeScript
// Auto-generated stub — replace with real implementation
|
|
|
|
export interface ServerLockInfo {
|
|
pid: number
|
|
port: number
|
|
host: string
|
|
httpUrl: string
|
|
startedAt: number
|
|
}
|
|
|
|
export const writeServerLock: (info: ServerLockInfo) => Promise<void> =
|
|
async () => {}
|
|
export const removeServerLock: () => Promise<void> = async () => {}
|
|
export const probeRunningServer: () => Promise<ServerLockInfo | null> =
|
|
async () => null
|