File size: 148 Bytes
6dd477f
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
export type Banner = {
	id: string;
	type: string;
	title?: string;
	content: string;
	url?: string;
	dismissible?: boolean;
	timestamp: number;
};