src/data/shared.ts 189 B raw
1
interface IElement {
2
	readonly as?: keyof HTMLElementTagNameMap;
3
}
4
5
interface PaginationLink {
6
	url: string;
7
	text?: string;
8
	srLabel?: string;
9
}
10
11
export type { IElement, PaginationLink };