Socket
Socket
Sign inDemoInstall

@awdware/gah-shared

Package Overview
Dependencies
Maintainers
1
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@awdware/gah-shared - npm Package Compare versions

Comparing version 0.0.28 to 0.0.29

6

lib/models/gah-plugin.d.ts

@@ -12,3 +12,3 @@ import { IFileSystemService } from '../services/file-system.service';

protected readonly name: string;
protected config: GahPluginConfig;
config: GahPluginConfig;
protected fileSystemService: IFileSystemService;

@@ -23,5 +23,5 @@ protected loggerService: ILoggerService;

constructor(pluginName: string);
protected abstract onInit(): void;
protected abstract onInstall(existingSettings?: GahPluginConfig): Promise<GahPluginConfig>;
abstract onInit(): void;
abstract onInstall(existingSettings?: GahPluginConfig): Promise<GahPluginConfig>;
protected registerEventListener(event: GahEvent, handler: (event: GahEventPayload) => void): void;
}
import { GahContext } from '../models/gah-context';
export interface IContextService {
setContext(context: GahContext): void;
setContext(context: Partial<GahContext>): void;
getContext(): GahContext;
}

@@ -11,6 +11,2 @@ import { GahEvent, GahEventPayload } from '../models/gah-event';

updatePlugins(pluginUpdates: PlguinUpdate[]): Promise<void>;
pluginNames: {
name: string;
version: string;
}[];
}
export interface IWorkspaceService {
ensureGitIgnoreLine(gitIgnorePattern: string, description?: string, cwd?: string): void;
getGlobalGahFolder(): string;
}
{
"name": "@awdware/gah-shared",
"version": "0.0.28",
"version": "0.0.29",
"description": "Provides types and interfaces for gah",

@@ -5,0 +5,0 @@ "main": "./lib/index.js",

@@ -12,3 +12,3 @@ import { IFileSystemService } from '../services/file-system.service';

protected readonly name: string;
protected config: GahPluginConfig;
config: GahPluginConfig;
protected fileSystemService: IFileSystemService;

@@ -23,5 +23,5 @@ protected loggerService: ILoggerService;

constructor(pluginName: string);
protected abstract onInit(): void;
protected abstract onInstall(existingSettings?: GahPluginConfig): Promise<GahPluginConfig>;
abstract onInit(): void;
abstract onInstall(existingSettings?: GahPluginConfig): Promise<GahPluginConfig>;
protected registerEventListener(event: GahEvent, handler: (event: GahEventPayload) => void): void;
}
import { GahContext } from '../models/gah-context';
export interface IContextService {
setContext(context: GahContext): void;
setContext(context: Partial<GahContext>): void;
getContext(): GahContext;
}

@@ -11,6 +11,2 @@ import { GahEvent, GahEventPayload } from '../models/gah-event';

updatePlugins(pluginUpdates: PlguinUpdate[]): Promise<void>;
pluginNames: {
name: string;
version: string;
}[];
}
export interface IWorkspaceService {
ensureGitIgnoreLine(gitIgnorePattern: string, description?: string, cwd?: string): void;
getGlobalGahFolder(): string;
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc