- MANUAL-PRODUTO.md: Manual do usuário final - MANUAL-VENDAS.md: Estratégia comercial e vendas - MANUAL-TECNICO.md: Infraestrutura e deploy - README.md: Visão geral do projeto
11 lines
313 B
TypeScript
11 lines
313 B
TypeScript
import type { NextConfig } from '../../server/config-shared';
|
|
type SwcPluginsEvent = {
|
|
eventName: string;
|
|
payload: {
|
|
pluginName: string;
|
|
pluginVersion?: string;
|
|
};
|
|
};
|
|
export declare function eventSwcPlugins(dir: string, config: NextConfig): Promise<Array<SwcPluginsEvent>>;
|
|
export {};
|