| 
									
										
										
										
											2019-08-16 09:43:51 -04:00
										 |  |  | interface CommandProperties { | 
					
						
							| 
									
										
										
										
											2020-10-01 10:45:33 -04:00
										 |  |  |     [key: string]: any; | 
					
						
							| 
									
										
										
										
											2019-08-16 09:43:51 -04:00
										 |  |  | } | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Commands | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Command Format: | 
					
						
							| 
									
										
										
										
											2020-10-01 10:45:33 -04:00
										 |  |  |  *   ::name key=value,key=value::message | 
					
						
							| 
									
										
										
										
											2019-08-16 09:43:51 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Examples: | 
					
						
							| 
									
										
										
										
											2020-10-01 10:45:33 -04:00
										 |  |  |  *   ::warning::This is the message | 
					
						
							|  |  |  |  *   ::set-env name=MY_VAR::some value | 
					
						
							| 
									
										
										
										
											2019-08-16 09:43:51 -04:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2020-10-01 10:45:33 -04:00
										 |  |  | export declare function issueCommand(command: string, properties: CommandProperties, message: any): void; | 
					
						
							|  |  |  | export declare function issue(name: string, message?: string): void; | 
					
						
							| 
									
										
										
										
											2019-08-16 09:43:51 -04:00
										 |  |  | export {}; |