@mikezimm/npmfunctions
Version:
Functions used in my SPFx webparts
9 lines (8 loc) • 603 B
TypeScript
import { IPropertyPaneDropdownOption } from "@microsoft/sp-property-pane";
import { PivotLinkSize, PivotLinkFormat } from 'office-ui-fabric-react/lib/Pivot';
import { IPivotFormatChoices, IPivotSizeChoices } from "./Types";
export declare const pivFormatChoices: IPropertyPaneDropdownOption[];
export declare const pivSizeChoices: IPropertyPaneDropdownOption[];
export declare const pivOptionsChoices: IPropertyPaneDropdownOption[];
export declare function getPivFormat(findMe: IPivotFormatChoices): PivotLinkFormat;
export declare function getPivSize(findMe: IPivotSizeChoices): PivotLinkSize;