mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
cbc1b7f2a3
* ✨ 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>
11 lines
182 B
TypeScript
11 lines
182 B
TypeScript
export interface IData {
|
|
document: IDocument;
|
|
encodingType: string;
|
|
}
|
|
|
|
export interface IDocument {
|
|
type: string;
|
|
language?: string;
|
|
content?: string;
|
|
gcsContentUri?: string;
|
|
} |