Open Cap Table Protocol Canton SDK - v0.2.224
    Preparing search index...

    Interface DeprecationWarningConfig

    Configuration for deprecation warnings. Can be customized for testing or production environments.

    interface DeprecationWarningConfig {
        enabled: boolean;
        handler?: (message: string, details: DeprecationDetails) => void;
    }
    Index

    Properties

    Properties

    enabled: boolean

    Whether to emit console warnings for deprecated field usage (default: true in development)

    handler?: (message: string, details: DeprecationDetails) => void

    Custom warning handler (default: console.warn)