2022-03-23 05:28:49 +00:00
|
|
|
export interface Desc {
|
|
|
|
[domain: string]: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface InfoItem {
|
|
|
|
domain: string;
|
|
|
|
description: string;
|
|
|
|
type: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface Type {
|
|
|
|
[domain: string]: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface tldEnum {
|
|
|
|
desc: Desc;
|
|
|
|
info: InfoItem[];
|
|
|
|
list: string[];
|
|
|
|
type: Type;
|
|
|
|
}
|
|
|
|
|
2022-03-23 05:33:22 +00:00
|
|
|
declare const tldEnum: tldEnum;
|
2022-03-23 05:28:49 +00:00
|
|
|
export default tldEnum;
|