vlocode-project - v1.40.0-beta-4
    Preparing search index...

    Interface MetadataManifest

    interface MetadataManifest {
        apiVersion: string;
        files: {
            [packagePath: string]: (
                | { name?: undefined; type?: undefined }
                | { name: string; type: string }
            ) & (
                | { body?: undefined; localPath: string }
                | { body: string | Buffer<ArrayBufferLike>; localPath?: undefined }
            );
        };
    }
    Index

    Properties

    Properties

    apiVersion: string
    files: {
        [packagePath: string]: (
            { name?: undefined; type?: undefined }
            | { name: string; type: string }
        ) & (
            | { body?: undefined; localPath: string }
            | { body: string | Buffer<ArrayBufferLike>; localPath?: undefined }
        );
    }