Update index.ts

This commit is contained in:
Nicolas 2024-08-29 17:11:16 -03:00
parent 1ecee90305
commit db85f1a7d5
1 changed files with 4 additions and 7 deletions

View File

@ -265,13 +265,10 @@ export interface CrawlStatusResponseV0 {
* Defines options for mapping URLs during a crawl.
*/
export interface MapParams {
includePaths?: string[]
excludePaths?: string[]
maxDepth?: number
limit?: number
allowBackwardLinks?: boolean
allowExternalLinks?: boolean
ignoreSitemap?: boolean
search?: string;
ignoreSitemap?: boolean;
includeSubdomains?: boolean;
limit?: number;
}
/**