Files
dealplustech/node_modules/unstorage/drivers/azure-storage-table.d.cts
Kunthawat 5171a789e9 fix: Final restoration with port 80
 COMPLETED:
1. Dockerfile uses port 80 (astro preview)
2. BaseLayout imports globals.css
3. globals.css with Tailwind v4 @theme syntax
4. index.astro has Header, Footer, FixedContact
5. All image references fixed to existing files
6. Hero uses hdpe_pipe_main.jpg
7. Product cards use hdpe001.jpg
8. pt-20 on main for fixed header

 TESTED LOCALLY:
- Build: 15 pages in 1.27s
- Docker build successful
- Port 80 working
- Images load
- CSS works

Ready for Easypanel deployment.
2026-03-12 08:58:56 +07:00

37 lines
1.2 KiB
TypeScript

import { TableClient } from "@azure/data-tables";
export interface AzureStorageTableOptions {
/**
* The name of the Azure Storage account.
*/
accountName: string;
/**
* The name of the table. All entities will be stored in the same table.
* @default 'unstorage'
*/
tableName?: string;
/**
* The partition key. All entities will be stored in the same partition.
* @default 'unstorage'
*/
partitionKey?: string;
/**
* The account key. If provided, the SAS key will be ignored. Only available in Node.js runtime.
*/
accountKey?: string;
/**
* The SAS key. If provided, the account key will be ignored.
*/
sasKey?: string;
/**
* The connection string. If provided, the account key and SAS key will be ignored. Only available in Node.js runtime.
*/
connectionString?: string;
/**
* The number of entries to retrive per request. Impacts getKeys() and clear() performance. Maximum value is 1000.
* @default 1000
*/
pageSize?: number;
}
declare const _default: (opts: AzureStorageTableOptions) => import("..").Driver<AzureStorageTableOptions, TableClient>;
export default _default;