dynamodb-toolbox
Version:
Lightweight and type-safe query builder for DynamoDB and TypeScript.
12 lines (11 loc) • 407 B
TypeScript
import type { ITableDTO } from '../../../table/actions/dto/dto.js';
import type { AWSConfig, FetchOpts } from './types.js';
interface Table extends AWSConfig, ITableDTO {
awsAccountId: string;
awsRegion: string;
icon: string;
title?: string;
description?: string;
}
export declare const putTable: (table: Table, { apiUrl, fetch: _fetch, apiKey }: FetchOpts) => Promise<void>;
export {};