mirror of
				https://github.com/NativeScript/NativeScript.git
				synced 2025-11-04 21:06:45 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			458 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			458 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
//@private
 | 
						|
/**
 | 
						|
* This module is used as a native implementation for each of the underlying platforms.
 | 
						|
* Users will not typically require it as it supports the module infrastructure.
 | 
						|
*/
 | 
						|
//
 | 
						|
export declare function fromResource(name: string): any;
 | 
						|
export declare function fromFile(path: string): any;
 | 
						|
export declare function fromData(data: any): any;
 | 
						|
export declare function saveToFile(instance: any, path: string, format: number, quality?: number): boolean; |