15 lines
319 B
TypeScript
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 };
|