File size: 164 Bytes
1e92f2d
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
export type Unit = 'day' | 'week' | 'month' | 'year';

export interface HighLightItem {
	id: number;
	title: string;
	views: number;
	url: string;
	href: string;
}