You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					15 lines
				
				467 B
			
		
		
			
		
	
	
					15 lines
				
				467 B
			| 
								 
											3 years ago
										 
									 | 
							
								export default class CSVError extends Error {
							 | 
						||
| 
								 | 
							
								    err: string;
							 | 
						||
| 
								 | 
							
								    line: number;
							 | 
						||
| 
								 | 
							
								    extra: string | undefined;
							 | 
						||
| 
								 | 
							
								    static column_mismatched(index: number, extra?: string): CSVError;
							 | 
						||
| 
								 | 
							
								    static unclosed_quote(index: number, extra?: string): CSVError;
							 | 
						||
| 
								 | 
							
								    static fromJSON(obj: any): CSVError;
							 | 
						||
| 
								 | 
							
								    constructor(err: string, line: number, extra?: string | undefined);
							 | 
						||
| 
								 | 
							
								    toJSON(): {
							 | 
						||
| 
								 | 
							
								        err: string;
							 | 
						||
| 
								 | 
							
								        line: number;
							 | 
						||
| 
								 | 
							
								        extra: string | undefined;
							 | 
						||
| 
								 | 
							
								    };
							 | 
						||
| 
								 | 
							
								}
							 |