/** * An interface representing the province and city of an ID number. * @interface idNumberFindType * @property {string} province - The province of the ID number. * @property {string} city - The city of the ID number. */ export interface idNumberFindType { province: string; city: string; }