Your IP : 216.73.216.244


Current Path : /home/deltalab/PMS/logistic-backend/node_modules/@angular-devkit/schematics/src/tree/
Upload File :
Current File : //home/deltalab/PMS/logistic-backend/node_modules/@angular-devkit/schematics/src/tree/entry.d.ts

/**
 * @license
 * Copyright Google LLC All Rights Reserved.
 *
 * Use of this source code is governed by an MIT-style license that can be
 * found in the LICENSE file at https://angular.io/license
 */
/// <reference types="node" />
import { Path } from '@angular-devkit/core';
import { FileEntry } from './interface';
export declare class SimpleFileEntry implements FileEntry {
    private _path;
    private _content;
    constructor(_path: Path, _content: Buffer);
    get path(): Path;
    get content(): Buffer;
}
export declare class LazyFileEntry implements FileEntry {
    private _path;
    private _load;
    private _content;
    constructor(_path: Path, _load: (path?: Path) => Buffer);
    get path(): Path;
    get content(): Buffer;
}