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