packages/noco-integrations/core/README.md
This package contains the core interfaces, types, and utilities that all NocoDB integrations depend on.
The core package defines:
The core package defines abstract base classes for the following integration types:
Integration packages should import and extend the appropriate abstract classes from this package.
import { AiIntegration } from '@noco-integrations/core';
export class MyAiIntegration extends AiIntegration {
// Implementation...
}
To build the package:
pnpm build
To clean the build artifacts:
pnpm clean