mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2026-09-23 02:20:44 +02:00
Co-authored-by: feelgood-interface <feelgood.interface@gmail.com>
18 lines
254 B
TypeScript
18 lines
254 B
TypeScript
export interface ICosmosDbCredentials {
|
|
account: string;
|
|
key: string;
|
|
database: string;
|
|
baseUrl: string;
|
|
}
|
|
|
|
export interface IErrorResponse {
|
|
code: string;
|
|
message: string;
|
|
}
|
|
|
|
export interface IContainer {
|
|
partitionKey: {
|
|
paths: string[];
|
|
};
|
|
}
|