Takomo v9.0.1
    Preparing search index...

    Type Alias SuccessfulParseConfigResult<CONFIG>

    Represents a successful result of parsing a custom stack configuration.

    Contains the validated and parsed configuration object that can be safely used in subsequent custom stack operations such as create, update and delete.

    type SuccessfulParseConfigResult<CONFIG> = {
        parsedConfig: CONFIG;
        success: true;
    }

    Type Parameters

    • CONFIG
    Index

    Properties

    parsedConfig: CONFIG

    The successfully parsed and validated configuration object. This configuration will be used for all subsequent stack operations.

    success: true