23 lines
		
	
	
		
			602 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			602 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import Wrapper from './Wrapper.svelte';
 | |
| import Image from './Image.svelte';
 | |
| import Content from './Content.svelte';
 | |
| import Title from './Title.svelte';
 | |
| import Description from './Description.svelte';
 | |
| import ReadMoreButton from './ReadMoreButton.svelte';
 | |
| 
 | |
| const Card = Wrapper as typeof Wrapper & {
 | |
|   Image: typeof Image;
 | |
|   Content: typeof Content;
 | |
|   Title: typeof Title;
 | |
|   Description: typeof Description;
 | |
|   ReadMoreButton: typeof ReadMoreButton;
 | |
| }
 | |
| 
 | |
| Card.Image = Image;
 | |
| Card.Content = Content;
 | |
| Card.Title = Title;
 | |
| Card.Description = Description;
 | |
| Card.ReadMoreButton = ReadMoreButton;
 | |
| 
 | |
| export { Card };
 |