UNPKG

@swizzyweb/swizzy-web-service

Version:

Web service framework for swizzy dyn serve

13 lines (12 loc) 495 B
import { ILogger } from "@swizzyweb/swizzy-common"; /** * Initializes the app data root of web service, * creating the directory for web service directory space. */ export declare function getAppDataPathFromPropsAndInitialize(props: GetAppDataPathFromPropsProps): string; export interface GetAppDataPathFromPropsProps { packageName: string; appDataRoot: string; logger: ILogger<any>; } export declare function getAppDataPathFromProps(props: GetAppDataPathFromPropsProps): string;