@aappddeevv/dynamics-client-ui
Version:
## What is it? A library to help you create great dynamics applications.
20 lines (17 loc) • 502 B
text/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
}