Files
dealplustech/node_modules/unstorage/drivers/azure-cosmos.d.cts
Kunthawat Greethong 6562a1748f fix: Fix product page syntax errors
1. Remove duplicate/broken code in product tables section
2. Fix PostCSS config for Tailwind 4
3. Add @tailwindcss/postcss dependency
4. Remove --production flag from Dockerfile (sharp required)

All fixes enable successful Docker build with favicon working.
2026-03-03 14:57:46 +07:00

38 lines
1.0 KiB
TypeScript

import { Container } from "@azure/cosmos";
export interface AzureCosmosOptions {
/**
* CosmosDB endpoint in the format of https://<account>.documents.azure.com:443/.
*/
endpoint: string;
/**
* CosmosDB account key. If not provided, the driver will use the DefaultAzureCredential (recommended).
*/
accountKey?: string;
/**
* The name of the database to use. Defaults to `unstorage`.
* @default "unstorage"
*/
databaseName?: string;
/**
* The name of the container to use. Defaults to `unstorage`.
* @default "unstorage"
*/
containerName?: string;
}
export interface AzureCosmosItem {
/**
* The unstorage key as id of the item.
*/
id: string;
/**
* The unstorage value of the item.
*/
value: string;
/**
* The unstorage mtime metadata of the item.
*/
modified: string | Date;
}
declare const _default: (opts: AzureCosmosOptions) => import("..").Driver<AzureCosmosOptions, Promise<Container>>;
export default _default;