13 lines
		
	
	
		
			382 B
		
	
	
	
		
			TypeScript
		
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			382 B
		
	
	
	
		
			TypeScript
		
	
	
	
import type { RecordOf } from 'immutable';
 | 
						|
 | 
						|
import type { ApiPreviewCardJSON } from 'flavours/glitch/api_types/statuses';
 | 
						|
 | 
						|
export type { StatusVisibility } from 'flavours/glitch/api_types/statuses';
 | 
						|
 | 
						|
// Temporary until we type it correctly
 | 
						|
export type Status = Immutable.Map<string, unknown>;
 | 
						|
 | 
						|
type CardShape = Required<ApiPreviewCardJSON>;
 | 
						|
 | 
						|
export type Card = RecordOf<CardShape>;
 |