@mikezimm/fps-library-v2
Version:
Library of reusable typescript/javascript functions, interfaces and constants
25 lines (24 loc) • 1.33 kB
TypeScript
/**
* CodeAnalizerComment: Updated 3 imports on 2024-09-21 23:07:24
* Update:: import { IHelpTable } to '@mikezimm/fps-core-v7/lib/banner/components/SingleHelpPage/interfaces/ISinglePageProps;'
* Update:: import { check4This } to '@mikezimm/fps-core-v7/lib/logic/Links/CheckSearch;'
* Update:: import { ITrickRow } to '@mikezimm/fps-core-v7/lib/banner/components/SingleHelpPage/interfaces/ITrickRow;'
*/
import * as React from 'react';
import { IHelpTable } from '@mikezimm/fps-core-v7/lib/banner/components/SingleHelpPage/interfaces/ISinglePageProps';
import { ITrickRow } from '@mikezimm/fps-core-v7/lib/banner/components/SingleHelpPage/interfaces/ITrickRow';
export interface IInfoStyleCell {
info: any;
style: React.CSSProperties;
}
export declare function makeCenteredSpan(info: any): IInfoStyleCell;
export declare function makeCenteredBoldSpan(info: any): IInfoStyleCell;
/**
* THIS IS SIMILAR to tricksTable but that creates the rows by hand. due to added complexity
* @param tricks
* @param heading
* @returns
*/
export declare function createTricksTable(tricks: ITrickRow[], heading?: string): IHelpTable;
export declare function createTricksTableElement(tricks: ITrickRow[], heading?: string, tableWidth?: string): JSX.Element;
//# sourceMappingURL=makeTricksTable.d.ts.map