UNPKG

@etsoo/materialui

Version:

TypeScript Material-UI Implementation

16 lines (15 loc) 573 B
import { AuditLineChangesDto } from "@etsoo/appscript"; /** * Check obj is instance of AuditLineChangesDto * @param obj Input * @returns Result */ export declare function IsAuditLineUpdateData(obj: any): obj is AuditLineChangesDto; /** * Show data comparison * @param data Data * @param modelTitle Model window title * @param getLabel Get label callback * @param equalCheck Equal check for properties */ export declare const ShowDataComparison: (data: AuditLineChangesDto, modelTitle?: string, getLabel?: (field: string) => string, equalCheck?: boolean) => void;