@5minds/processcube_app_sdk
Version:
The SDK for ProcessCube Apps
13 lines (12 loc) • 437 B
TypeScript
import type { NextConfig } from 'next';
export interface NextConfigWithApplicationSdkConfig extends NextConfig {
applicationSdk?: {
customExternalTasksDirPath?: string;
useExternalTasks?: boolean;
};
}
interface NextConfigFn {
(phase: string, context?: any): Promise<NextConfig> | NextConfig;
}
export declare function withApplicationSdk(config?: NextConfigWithApplicationSdkConfig): NextConfigFn;
export {};