markitect-main/node_modules/tldts-core/src/lookup/interface.ts

10 lines
227 B
TypeScript

export interface IPublicSuffix {
isIcann: boolean | null;
isPrivate: boolean | null;
publicSuffix: string | null;
}
export interface ISuffixLookupOptions {
allowIcannDomains: boolean;
allowPrivateDomains: boolean;
}