UNPKG

@mikezimm/fps-core-v7

Version:

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

21 lines 676 B
/** * 2024-09-07: Migrated from the same folder in fps-library-v2/banner/features/PinMe/... */ import { IPageLayoutType } from "../../../types/@msft/1.15.2/layout"; export type IPinMeState = 'normal' | 'pinFull' | 'pinMini' | 'disabled'; export interface IFPSPinMenu { defPinState: IPinMeState; forcePinState: boolean; domElement: HTMLElement; pageLayout: IPageLayoutType; } export interface IPinStatus { defPinState: IPinMeState; refresh: boolean; } export interface IMinPinMeProps { defPinState: IPinMeState; forcePinState: boolean; } export declare const changePinMe: string[]; //# sourceMappingURL=Interfaces.d.ts.map