counties, pagination, filter count, show total results
This commit is contained in:
@@ -57,7 +57,6 @@ export interface ListCriteria {
|
||||
start: number;
|
||||
length: number;
|
||||
page: number;
|
||||
pageCount: number;
|
||||
types: string[];
|
||||
city: string;
|
||||
prompt: string;
|
||||
@@ -230,6 +229,12 @@ export interface GeoResult {
|
||||
state: string;
|
||||
state_code: string;
|
||||
}
|
||||
export interface CountyResult {
|
||||
id: number;
|
||||
name: string;
|
||||
state: string;
|
||||
state_code: string;
|
||||
}
|
||||
export function isEmpty(value: any): boolean {
|
||||
// Check for undefined or null
|
||||
if (value === undefined || value === null) {
|
||||
|
||||
Reference in New Issue
Block a user