n8n-nodes-nmap
Version:
Nmap Scan
22 lines • 611 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.OnlyPassword = void 0;
class OnlyPassword {
constructor() {
this.name = 'onlyPassword';
this.displayName = 'Password';
this.properties = [
{
displayName: 'Password',
name: 'password',
type: 'string',
typeOptions: {
password: true,
},
default: '',
},
];
}
}
exports.OnlyPassword = OnlyPassword;
//# sourceMappingURL=OnlyPassword.credentials.js.map