import type { CreateQueryOptions, QueryKey } from '@tanstack/svelte-query'; import type { DistributiveOmit } from '../../utils/types'; import type { EdenQueryBaseOptions } from './query-base-options'; import type { EdenQueryKey } from './query-key'; export type CreateQueryOptionsForCreateQueries = DistributiveOmit, 'queryKey'>; export type EdenCreateQueryOptionsForCreateQueries = CreateQueryOptionsForCreateQueries & EdenQueryBaseOptions & { queryKey: EdenQueryKey; }; //# sourceMappingURL=create-query-options-for-create-queries.d.ts.map