14 lines
472 B
TypeScript
14 lines
472 B
TypeScript
import { ICredentialType, INodeProperties } from 'n8n-workflow';
|
|
/**
|
|
* LibreBooking Config Credential
|
|
*
|
|
* Ermöglicht die zentrale Konfiguration von Standardwerten,
|
|
* die in allen LibreBooking Nodes verwendet werden können.
|
|
*/
|
|
export declare class LibreBookingConfig implements ICredentialType {
|
|
name: string;
|
|
displayName: string;
|
|
documentationUrl: string;
|
|
properties: INodeProperties[];
|
|
}
|
|
//# sourceMappingURL=LibreBookingConfig.credentials.d.ts.map
|