UNPKG

@contract-case/case-core

Version:

Core functionality for the ContractCase contract testing suite

18 lines 705 B
import { ContractData } from '../../entities/types'; /** * Normalises a provider name to a slug safe for the file system. * * This is in the core package, because we don't want this behaviour * to change based on the filesystem, and because the verification * result types need it. */ export declare const providerSlug: (contract: ContractData) => string; /** * Normalises a consumer name to a slug safe for the file system * * This is in the core package, because we don't want this behaviour * to change based on the filesystem, and because the verification * result types need it. */ export declare const consumerSlug: (contract: ContractData) => string; //# sourceMappingURL=slugs.d.ts.map