UNPKG

@mikezimm/fps-library-v2

Version:

Library of reusable typescript/javascript functions, interfaces and constants

19 lines 639 B
/// <reference types="react" /> export interface ISavePropsItem extends Partial<any> { Author?: any; Editor?: any; FirstPublishedDate?: any; FirstPublishedDateD?: string; createdLoc?: string; createdD?: string; "Author/Title"?: string; modifiedLoc?: string; modifiedD?: string; "Editor/Title"?: string; } export interface ISavePropsRow { item: ISavePropsItem; value: 'Created' | 'Modified' | 'Published'; } export declare function getDateStampRow(item: ISavePropsItem, value: 'Created' | 'Modified' | 'Published'): JSX.Element; //# sourceMappingURL=getDateStampRow.d.ts.map