aws-cdk
Version:
AWS CDK CLI, the command line tool for CDK apps
10 lines (9 loc) • 389 B
TypeScript
/**
* Starts the CDK Language Server over stdio.
*
* The server speaks LSP/JSON-RPC on stdin/stdout, so this command must not
* write anything else to stdout. CDK CLI logs go to stderr by default, which
* keeps the protocol channel clean. The process runs until the LSP client
* closes the stdio channel (stdin end), then exits 0.
*/
export declare function lsp(): Promise<number>;