dtamind-components
Version:
DTAmindai Components
19 lines • 550 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class PostgresUrl {
constructor() {
this.label = 'Postgres URL';
this.name = 'PostgresUrl';
this.version = 1.0;
this.inputs = [
{
label: 'Postgres URL',
name: 'postgresUrl',
type: 'string',
placeholder: 'postgresql://localhost/mydb'
}
];
}
}
module.exports = { credClass: PostgresUrl };
//# sourceMappingURL=PostgresUrl.credential.js.map