n8n
Version:
n8n Workflow Automation Tool
20 lines (19 loc) • 617 B
TypeScript
import type { INodeTypeDescription } from 'n8n-workflow';
export type StrapiCommunityNodeType = {
authorGithubUrl: string;
authorName: string;
checksum: string;
description: string;
displayName: string;
name: string;
numberOfStars: number;
numberOfDownloads: number;
packageName: string;
createdAt: string;
updatedAt: string;
npmVersion: string;
isOfficialNode: boolean;
companyName?: string;
nodeDescription: INodeTypeDescription;
};
export declare function getCommunityNodeTypes(environment: 'staging' | 'production'): Promise<StrapiCommunityNodeType[]>;