mirror of
https://github.com/cdr/code-server.git
synced 2025-12-06 08:27:17 +01:00
- Don't use "any" for the API type. - Remove everything from the Coder API that can eventually be done through the VS Code API. - Move the event emission to our own client to minimize patching.
3 lines
158 B
TypeScript
3 lines
158 B
TypeScript
declare namespace coder {
|
|
export const registerView: (viewId: string, viewName: string, containerId: string, containerName: string, icon: string) => void;
|
|
}
|