import { Kapp } from '..'; /** * @interface IService Represents a standard service class. */ export interface IService { init: (app: Kapp, name: string) => void | Promise; } /** * @interface IServicePaths Represents an object that defines the names and the paths to services scripts. */ export interface IServicePaths { [name: string]: string; }