UNPKG

n8n

Version:

n8n Workflow Automation Tool

18 lines (17 loc) 744 B
import { KeyPairType } from './key-pair-type'; export declare class SourceControlPreferences { constructor(preferences?: Partial<SourceControlPreferences> | undefined); connected: boolean; repositoryUrl: string; branchName: string; branchReadOnly: boolean; branchColor: string; readonly publicKey?: string; readonly initRepo?: boolean; readonly keyGeneratorType?: KeyPairType; connectionType?: 'ssh' | 'https'; httpsUsername?: string; httpsPassword?: string; static fromJSON(json: Partial<SourceControlPreferences>): SourceControlPreferences; static merge(preferences: Partial<SourceControlPreferences>, defaultPreferences: Partial<SourceControlPreferences>): SourceControlPreferences; }