Files
n8n_Demo/n8n-n8n-1.109.2/packages/nodes-base/nodes/Microsoft/AzureCosmosDb/helpers/interfaces.ts

18 lines
254 B
TypeScript
Raw Normal View History

2025-09-08 04:48:28 +08:00
export interface ICosmosDbCredentials {
account: string;
key: string;
database: string;
baseUrl: string;
}
export interface IErrorResponse {
code: string;
message: string;
}
export interface IContainer {
partitionKey: {
paths: string[];
};
}