n8n/packages/nodes-base/nodes/Google/CloudNaturalLanguage/Interface.ts
Michael Kret 91d7e16c81
n8n-3867-progressively-apply-prettier-to-all (#3873)
* 🔨 formatting nodes with prettier
2022-08-17 17:50:24 +02:00

12 lines
183 B
TypeScript

export interface IData {
document: IDocument;
encodingType: string;
}
export interface IDocument {
type: string;
language?: string;
content?: string;
gcsContentUri?: string;
}