Explorar el Código

don't mention legacy API in README

Eugene Pankov hace 5 años
padre
commit
6c8d00eb16
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      terminus-terminal/README.md

+ 2 - 2
terminus-terminal/README.md

@@ -9,7 +9,7 @@ Terminus Terminal Plugin
 Using the API:
 Using the API:
 
 
 ```ts
 ```ts
-import { TerminalContextMenuItemProvider } from 'terminus-terminal'
+import { ShellProvider } from 'terminus-terminal'
 ```
 ```
 
 
 Exporting your subclasses:
 Exporting your subclasses:
@@ -19,7 +19,7 @@ Exporting your subclasses:
   ...
   ...
   providers: [
   providers: [
     ...
     ...
-    { provide: TerminalContextMenuItemProvider, useClass: MyContextMenu, multi: true },
+    { provide: ShellProvider, useClass: MyShellPlugin, multi: true },
     ...
     ...
   ]
   ]
 })
 })