@aappddeevv/dynamics-client-ui
Version:
## What is it? A library to help you create great dynamics applications.
18 lines (17 loc) • 508 B
TypeScript
/** dynamics audit attributes */
export interface Audit {
createdon: string | null;
createdby: string | null;
modifiedon: string | null;
modifiedby: string | null;
}
/** We often want to reformat dates to a better date format than the default. */
export interface DateStr {
createdonstr: string | null;
modifiedonstr: string | null;
}
/** key,text tuples are used alot in fabric and sometimes you cannot map them. */
export interface KeyAndText {
key: string;
text: string;
}