Add isWord check to domains

This commit is contained in:
2023-09-05 11:45:23 -06:00
parent cc2a1971f0
commit 9b9953e807
5 changed files with 18 additions and 5 deletions

View File

@@ -51,6 +51,7 @@ export interface ParsedAuction {
price: number;
close_date: Date;
created: Date;
is_word: boolean;
}
export interface ParsedDomain {
@@ -59,6 +60,7 @@ export interface ParsedDomain {
domain_length: number
name: string;
tld: string;
is_word: boolean;
date_available?: Date;
date_registered?: Date;
}