11 lines
227 B
TypeScript
11 lines
227 B
TypeScript
export interface IPublicSuffix {
|
|
isIcann: boolean | null;
|
|
isPrivate: boolean | null;
|
|
publicSuffix: string | null;
|
|
}
|
|
|
|
export interface ISuffixLookupOptions {
|
|
allowIcannDomains: boolean;
|
|
allowPrivateDomains: boolean;
|
|
}
|