UNPKG

@mikezimm/fps-core-v7

Version:

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

22 lines 725 B
/** * 2024-10-27: * Changed from: * export type ISeriesSort = 'asis' | 'labels' | 'asc' | 'dec' | string | null ; * To: * export type ISeriesSort = 'asis' | 'labels' | 'asc' | 'desc' | null ; * * Reasoning: * Discovered using rest API for PhotoFormWebpart fetch call. * Should always be desc, not dec. * * However, this may cause other required updates because there are places where dec are used... * Just not used in an actual rest api but in logic. * */ export type ISeriesSort = 'asis' | 'labels' | 'asc' | 'desc' | null; export interface ISeriesSortObject { prop: string; order: ISeriesSort; asc?: boolean; } //# sourceMappingURL=Interfaces.d.ts.map