8 lines
394 B
TypeScript
8 lines
394 B
TypeScript
import { Manifest } from '@github/dependency-submission-toolkit';
|
|||
|
|
export default class CondaParser {
|
||
|
|
static searchFiles(filePath?: string, filePattern?: string): any;
|
||
|
|
static getManifestsFromEnvironmentFiles(files: string[]): any[];
|
||
|
|
static getManifestFromYaml(yaml: any, filePath: string): Manifest;
|
||
|
|
static getPurlFromDependency(dependency: string, ecosystem: string): string;
|
||
|
|
}
|