@kezios/forest-express-decorator
Version:
🚀 Decorators for Express Forest Admin
12 lines (11 loc) • 404 B
TypeScript
import { Application } from 'express';
import { LianaCollection } from '../types';
import { BaseSmartAction } from './BaseSmartAction';
export declare class BaseCollection {
name: string | undefined;
fields: any[];
actions: Record<string, BaseSmartAction>;
initialize(app: Application, Liana: any): LianaCollection;
private initializeSmartActions;
private initializeSmartField;
}