Add Cloud Natural Language node (#1181)

*  Add Cloud Natural Language node

* ⬆️ Set google-fonts-webpack-plugin to latest version

* 🐛 Rename method composite to compose

*  Improvements to Google Cloud Natural Language Node

Improvements to #1171

Co-authored-by: Tanay Pant <tanaypant@protonmail.com>
This commit is contained in:
Ricardo Espinoza
2020-11-19 03:04:20 -05:00
committed by GitHub
parent 79ccf6a2e9
commit cbc1b7f2a3
7 changed files with 436 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
export interface IData {
document: IDocument;
encodingType: string;
}
export interface IDocument {
type: string;
language?: string;
content?: string;
gcsContentUri?: string;
}