laravel-jstools
Version:
JS tools for building front-side of Laravel applications
10 lines (9 loc) • 463 B
TypeScript
import { ServiceListContract } from '../contracts/ServiceListContract';
import { ServiceListInterface } from '../interfaces/ServiceListInterface';
export declare abstract class Entity implements ServiceListContract {
protected serviceList: ServiceListInterface;
protected serviceDependsList: string[];
getServiceDependsList(): string[];
setServiceList(serviceList: ServiceListInterface): void;
getService(serviceName: string): any;
}