@mikezimm/fps-core-v7
Version:
Library of reusable core interfaces, types and constants migrated from fps-library-v2
10 lines • 387 B
TypeScript
export interface ISearchResultRow {
Cells: ISearchResultCell[];
}
export type ISearchResultCellValueType = 'Edm.String' | 'Edm.Int64' | 'Edm.Int32' | 'Edm.Double' | 'Edm.DateTime' | 'Edm.Boolean' | 'Edm.Guid';
export interface ISearchResultCell {
Key: string;
Value: string;
ValueType: ISearchResultCellValueType;
}
//# sourceMappingURL=ISearchResultRow.d.ts.map