@dazejs/framework
Version:
Daze.js - A powerful web framework for Node.js
8 lines (7 loc) • 308 B
TypeScript
import { ProviderInterface } from '../../../interfaces';
import { Application } from '../../../foundation/application';
import { ScheduleService } from '../../../supports/schedule';
export declare class ScheduleProvider implements ProviderInterface {
app: Application;
schedule(): ScheduleService;
}