UNPKG

385 BTypeScriptView Raw
1/// <reference types="node" />
2/**
3 * @license
4 * Copyright Google Inc. All Rights Reserved.
5 *
6 * Use of this source code is governed by an MIT-style license that can be
7 * found in the LICENSE file at https://angular.io/license
8 */
9export interface VinylFile extends Object {
10 path: string;
11 contents: Buffer;
12}
13export declare function isVinylFile(obj: any): obj is VinylFile;