mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
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[];
|
|
};
|
|
}
|