@mikezimm/npmfunctions
Version:
Functions used in my SPFx webparts
19 lines (18 loc) • 399 B
TypeScript
export declare 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;
}