@mikezimm/fps-core-v7
Version:
Library of reusable core interfaces, types and constants migrated from fps-library-v2
22 lines • 557 B
TypeScript
/**
* 2024-09-07: Migrated from the same folder in fps-library-v2/banner/components/SingleHelpPage/interfaces...
*/
export type IHelpTableRow = any;
export interface IHelpTable {
heading?: any;
headers: any[];
rows: IHelpTableRow[];
}
export interface IPageContent {
header?: any;
html1?: any;
table?: IHelpTable;
html2?: any;
footer?: any;
}
export interface ISinglePageProps {
showInfo: boolean;
allLoaded: boolean;
content: IPageContent;
}
//# sourceMappingURL=ISinglePageProps.d.ts.map