Skip to content

Commit

Permalink
fix(types): Update autobuild types
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Dickerson committed Sep 11, 2024
1 parent 0e38db0 commit c19b3da
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions projects/novo-elements/src/elements/data-table/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,17 @@ export interface IDataTablePreferences {
savedSearchName?: string;
savedSearchOwner?: DataTableSavedSearchOwner;
appliedSearchType?: AppliedSearchType;
autobuildEntityId?: number;
autobuildEntityData?: any;
autobuildEntity?: AutobuildEntityData;
hasUnsavedChanges?: boolean;
unsavedChanges?: any;
}

export interface AutobuildEntityData {
id: number;
searchEntity: string;
[key: string]: any;
}

export interface DataTableWhere {
query: string;
criteria?: AdaptiveCriteria;
Expand Down

0 comments on commit c19b3da

Please sign in to comment.