import { OnInit } from '@angular/core'; import { ConnectionStringModel } from '../../models/connection-string.model'; import { InfrastructureModel } from '../../models/infrastructure.model'; export declare class ConnectionStringsComponent implements OnInit { /** * Input property for data */ private _data; set Data(val: InfrastructureModel); get Data(): InfrastructureModel; /** * Input property to allow copying to clipboard */ CopyToClipboard: boolean; /** * Connection string title */ Title: string; /** * Array of connections */ Connections: Array; /** * Property to hold open/close state of panel */ PanelOpenState: boolean; constructor(); ngOnInit(): void; /** * Copy connection string to clipboard * * @param idx index of selected connection string */ CopyStringToClipboard(idx: number): void; /** * Get and Show connection strings */ protected connectionStrings(): void; } //# sourceMappingURL=connection-strings.component.d.ts.map