UNPKG

@mas-soft/mas-core-server

Version:

main application

15 lines (14 loc) 637 B
import { AppService } from './app.service'; import { SettingsProvider } from '../core-module/providers/settings'; import { StoresRepository } from './StoresRepository'; import { EntityControler } from '../core-module/common/entity-controller'; import { STORES } from './store'; export declare class AppController extends EntityControler<STORES, string> { private readonly appService; private readonly settings; private readonly repo; constructor(appService: AppService, settings: SettingsProvider, repo: StoresRepository); getHello(): string; getSettings(): string; getStores(): Promise<any>; }