Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. interface PluginManagerInterface {
  2. _plugins: {
  3. [name: string]: {
  4. [status: string]: boolean
  5. }
  6. }
  7. }
  8.  
  9. class PluginManager implements PluginManagerInterface {
  10.  
  11. _plugins: {
  12. [key: string]: {
  13. [status: string]: boolean
  14. }
  15. }
  16.  
  17. constructor() {
  18. this._plugins = {};
  19. }
  20.  
  21. // ...code
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement