laravel-jstools
Version:
JS tools for building front-side of Laravel applications
9 lines (8 loc) • 332 B
TypeScript
import { Service } from 'laravel-jstools-di';
import { PageServiceContract } from './contracts/PageServiceContract';
export declare class PageService extends Service implements PageServiceContract {
protected pageList: Array<any>;
constructor();
init(): void;
registerPageList(pageList: Array<any>): void;
}