The result of init, which can contain an error.

interface InitResult {
    error?: SidebarError;
    integrationProperties?: {
        [key: string]: any;
    };
}

Properties

error?: SidebarError
integrationProperties?: {
    [key: string]: any;
}