Member Junction
    Preparing search index...

    Result of a config operation.

    interface ConfigOperationResult {
        ErrorMessage?: string;
        Success: boolean;
        Warnings?: string[];
    }
    Index

    Properties

    ErrorMessage?: string

    Error message if the operation failed

    Success: boolean

    Whether the operation succeeded

    Warnings?: string[]

    Non-fatal per-file problems from a multi-config write: at least one config was updated, but another could not be (e.g. a re-export config with no object literal to insert into). Present only when the operation succeeded overall.