@lxdhub/api
Version:
Display, search and copy LXD-images using a web interface.
13 lines (12 loc) • 298 B
TypeScript
/// <reference types="node" />
import * as Path from 'path';
export declare type PathType = typeof Path;
/**
* The Path provider, which encapsulates
* the Path package into a injectable
* module
*/
export declare const PathProvider: {
provide: string;
useFactory: () => typeof Path;
};