17 lines
347 B
TypeScript
17 lines
347 B
TypeScript
/**
|
|
* Types for PageTop component
|
|
* @module utils/pageTop
|
|
*/
|
|
|
|
/**
|
|
* Interface that defines property for PageTop component
|
|
* @property {string} text Text to show in top
|
|
* @property {string} imagePath Path to image used in background
|
|
*/
|
|
interface PageTopProperty {
|
|
text: string;
|
|
imagePath: string;
|
|
}
|
|
|
|
export type { PageTopProperty };
|