*Add typings
This commit is contained in:
parent
ce800542c0
commit
5b9686ecdf
|
@ -0,0 +1,22 @@
|
|||
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;
|
||||
}
|
||||
|
||||
export default tldEnum;
|
Loading…
Reference in New Issue