reisarod's picture
Upload folder using huggingface_hub
5fae594 verified
raw
history blame contribute delete
227 Bytes
export interface IPublicSuffix {
isIcann: boolean | null;
isPrivate: boolean | null;
publicSuffix: string | null;
}
export interface ISuffixLookupOptions {
allowIcannDomains: boolean;
allowPrivateDomains: boolean;
}