File size: 329 Bytes
d51321a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export interface UvifyResult {
  file: string;
  fileType: string;
  oneLiner: string;
  uvInstallFromSource?: string;
  dependencies: string[];
  packageName?: string;
  pythonVersion?: string;
  isLocal: boolean;
}

export interface UvifyRequest {
  source: string;
  excludePatterns?: string[];
  includePatterns?: string[];
}