UNPKG

@mikezimm/fps-core-v7

Version:

Library of reusable core interfaces, types and constants migrated from fps-library-v2

9 lines 519 B
/** * 2024-09-07: Migrated from the same folder in fps-library-v2/common/Images/... */ import { IPropertyPaneDropdownOptionFPS } from "../../types/fps-common/AudienceInterfaces"; export type IImageFit = 'center' | 'contain' | 'cover' | 'none' | 'centerCover' | 'centerContain'; export type IImageCover = 'landscape' | 'portrait'; export declare const imgFitChoices: IPropertyPaneDropdownOptionFPS[]; export declare const imgCoverChoices: IPropertyPaneDropdownOptionFPS[]; //# sourceMappingURL=imgFit.d.ts.map