/** * This includes all the functions you can use to communicate with our crawl endpoint * * @module Crawl Methods */ import { TrieveSDK } from "../../sdk"; import { Dataset, GetCrawlRequestsForDatasetData } from "../../types.gen"; /** * Function that provides the ability to create a dataset. This function is used to create a new dataset in the organization. * * Example: * ```js * const dataset = await trieve.createDataset({ * dataset_name: "My Dataset", * }); * ``` */ export declare function getCrawlsForDataset( /** @hidden */ this: TrieveSDK, props: GetCrawlRequestsForDatasetData, signal?: AbortSignal): Promise; //# sourceMappingURL=index.d.ts.map