mirror of
				https://github.com/dawidd6/action-send-mail.git
				synced 2025-10-31 07:06:26 +07:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			341 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			341 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| /**
 | |
|  * Helper class for parsing paths into segments
 | |
|  */
 | |
| export declare class Path {
 | |
|     segments: string[];
 | |
|     /**
 | |
|      * Constructs a Path
 | |
|      * @param itemPath Path or array of segments
 | |
|      */
 | |
|     constructor(itemPath: string | string[]);
 | |
|     /**
 | |
|      * Converts the path to it's string representation
 | |
|      */
 | |
|     toString(): string;
 | |
| }
 | 
