Skip to content

Commit

Permalink
feat: add oss interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
j-luong committed Oct 23, 2023
1 parent 5fda560 commit 9b59e18
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/snyk/snykOss/views/interfaces.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import * as vscode from 'vscode';
import { Issue, OssIssueData } from '../../common/languageServer/types';
import { IWebViewProvider } from '../../common/views/webviewProvider';

export interface IOssSuggestionWebviewProvider extends IWebViewProvider<Issue<OssIssueData>> {
openIssueId: string | undefined;
}

export type OssIssueCommandArg = {
id: string;
folderPath: string;
filePath: string;
range: vscode.Range;
};

0 comments on commit 9b59e18

Please sign in to comment.