inngest-setup-redwoodjs
Version:
Setup Inngest in RedwoodJS
13 lines (12 loc) • 332 B
text/typescript
import type { SetupInngestFunctionOptions } from './command';
export type ExportedType = {
name: string;
type: string;
operationType: 'query' | 'mutation';
};
export interface SetupFunctionTasksOptions extends SetupInngestFunctionOptions {
}
export type FunctionImportConfig = {
import: string;
from: string;
};