mirror of
				https://github.com/Instadapp/Swap-Aggregator-Subgraph.git
				synced 2024-07-29 21:57:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			314 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			314 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| const withIs = require('../../..');
 | |
| 
 | |
| function Animal(type) {
 | |
|     this.type = type;
 | |
| }
 | |
| 
 | |
| Animal.prototype.getType = function () {
 | |
|     return this.type;
 | |
| };
 | |
| 
 | |
| module.exports = withIs.proto(Animal, {
 | |
|     className: 'Animal',
 | |
|     symbolName: '@org/package/Animal',
 | |
| });
 | |
| module.exports.WrappedClass = Animal;
 | 
