service-mappings.d.ts 544 B

123456789
  1. import { CustomError } from '../errors';
  2. export declare const services2resources: Map<string, string[]>;
  3. export declare function verifyServiceMappingExists(services: string[]): void;
  4. export declare function findServiceMappingForType(type: string): string;
  5. export declare function createIgnorePattern(services: string[]): string;
  6. export declare function createIgnorePatternWithMap(services: string[], serviceMap: Map<string, Array<string>>): string;
  7. export declare class InvalidServiceError extends CustomError {
  8. constructor(msg: string);
  9. }