n8n-nodes-base
Version:
Base nodes of n8n
13 lines • 453 B
TypeScript
import type { INodeProperties } from 'n8n-workflow';
export declare const groupOperations: INodeProperties[];
export declare const groupFields: INodeProperties[];
type GroupSchema = {
name: string;
collections: string[];
accessAll: boolean;
externalId: string;
};
export type GroupUpdateFields = GroupSchema;
export type GroupCreationAdditionalFields = Omit<GroupSchema, 'name'>;
export {};
//# sourceMappingURL=GroupDescription.d.ts.map