/** * 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. * @example * // /about/about.vue * * @example * // /some-dir/some-page.vue * */ interface PankuzuListProperty { currentPageName?: string; } export type { PankuzuListProperty };