verto-internals
Advanced tools
Comparing version 0.8.0 to 0.9.0
{ | ||
"name": "verto-internals", | ||
"version": "0.8.0", | ||
"version": "0.9.0", | ||
"description": "A collection of common code shared throughout Verto", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -0,3 +1,5 @@ | ||
/// <reference types="node" /> | ||
import { entity } from "@google-cloud/datastore/build/src/entity"; | ||
import { Operator, OrderOptions } from "@google-cloud/datastore/build/src/query"; | ||
import { FileOptions } from "@google-cloud/storage"; | ||
export interface GcpCredentialsProvider { | ||
@@ -57,1 +59,6 @@ type: string; | ||
} | ||
export interface FileSaveInfo { | ||
fileName: string; | ||
fileContent: string | Buffer; | ||
options?: FileOptions; | ||
} |
import {entity} from "@google-cloud/datastore/build/src/entity"; | ||
import {Operator, OrderOptions} from "@google-cloud/datastore/build/src/query"; | ||
import {FileOptions} from "@google-cloud/storage"; | ||
@@ -67,1 +68,7 @@ export interface GcpCredentialsProvider { | ||
} | ||
export interface FileSaveInfo { | ||
fileName: string; | ||
fileContent: string | Buffer; | ||
options?: FileOptions; | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
157130
73
1257