CIA Compliance Manager — API Documentation - v1.1.50
    Preparing search index...

    Interface IBaseService

    Base service interface that all services must implement

    Provides common functionality for validation and error handling

    interface IBaseService {
        name: string;
        validate(input: unknown): boolean;
        handleError(error: Error): ServiceError;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    Methods

    Properties

    name: string

    Service name for identification and logging

    Methods

    • Validate input parameters (returns simple boolean)

      Parameters

      • input: unknown

        Input to validate

      Returns boolean

      True if valid, false otherwise