Files
sera-new-hp/utils/pankuzuList.ts

15 lines
319 B
TypeScript

/**
* Type for PankuzuList component
* @module utils/pankuzuList
*/
/**
* Interface for PankuzuList component property.
* @property {string=} currentPageName Name of page to show at the end of pankuzu list.
*/
interface PankuzuListProperty {
currentPageName?: string;
}
export type { PankuzuListProperty };