Initial Commit

This commit is contained in:
Miyako Yakota
2023-07-06 05:15:23 +00:00
parent 64a32a44a8
commit bb950259e3
55 changed files with 87047 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
export type SolrRecord = {
id: string
firstName: string[]
lastName: string[]
emails: string[]
usernames: string[]
address: string[]
city: string
zipCode: string
state: string
latLong?: string;
}
export type SolrRecordXL = {
id: string;
line_number: number;
line: string[];
}