mirror of
https://github.com/Xevion/rdap.git
synced 2025-12-10 18:08:15 -06:00
Move types into schema, prepare for full lookup implementation
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
import type {FunctionComponent, ReactNode} from "react";
|
||||
import React, {Fragment} from "react";
|
||||
import {rdapStatusInfo} from "@/constants";
|
||||
import type {Domain} from "@/responses";
|
||||
import type {Domain} from "@/schema";
|
||||
import Events from "@/components/Events"
|
||||
|
||||
export type DomainProps = {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import type {FunctionComponent} from "react";
|
||||
import type {Event} from "@/responses";
|
||||
import type {Event} from "@/schema";
|
||||
import {Fragment} from "react";
|
||||
|
||||
export type EventsProps = {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import type {FunctionComponent} from "react";
|
||||
import DomainCard from "@/components/DomainCard";
|
||||
import type {Domain, AutonomousNumber, Entity, Nameserver, IpNetwork} from "@/responses";
|
||||
import type {Domain, AutonomousNumber, Entity, Nameserver, IpNetwork} from "@/schema";
|
||||
|
||||
export type ParsedGeneric = Domain | Nameserver | Entity | AutonomousNumber | IpNetwork;
|
||||
export type ObjectProps = {
|
||||
|
||||
Reference in New Issue
Block a user