UNPKG

@commercetools-frontend/cypress

Version:
14 lines (13 loc) 717 B
import { type ApplicationRuntimeConfig } from '@commercetools-frontend/application-config'; type CustomEntityConfigTaskOptions = { entryPointUriPath: string; dotfiles?: string[]; packageName?: string; }; declare const customApplicationConfig: (options: CustomEntityConfigTaskOptions) => Promise<ApplicationRuntimeConfig['env']>; declare const customViewConfig: (options: Omit<CustomEntityConfigTaskOptions, 'entryPointUriPath'>) => Promise<ApplicationRuntimeConfig['env']>; export { customApplicationConfig, customViewConfig }; declare const legacyConfig: { customApplicationConfig: (options: CustomEntityConfigTaskOptions) => Promise<ApplicationRuntimeConfig['env']>; }; export default legacyConfig;