mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
91d7e16c81
* 🔨 formatting nodes with prettier
12 lines
183 B
TypeScript
12 lines
183 B
TypeScript
export interface IData {
|
|
document: IDocument;
|
|
encodingType: string;
|
|
}
|
|
|
|
export interface IDocument {
|
|
type: string;
|
|
language?: string;
|
|
content?: string;
|
|
gcsContentUri?: string;
|
|
}
|