mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-10-31 05:24:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			296 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			296 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| /*
 | |
|  * SPDX-FileCopyrightText: hazelnoot and other Sharkey contributors
 | |
|  * SPDX-License-Identifier: AGPL-3.0-only
 | |
|  */
 | |
| 
 | |
| /// <reference path="account.ts" />
 | |
| 
 | |
| namespace MastodonEntity {
 | |
| 	export type Reaction = {
 | |
| 		name: string
 | |
| 		count: number
 | |
| 		me?: boolean
 | |
| 		url?: string
 | |
| 		static_url?: string
 | |
| 	}
 | |
| }
 |