/** * 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 };