dynamodb-toolbox
Version:
Lightweight and type-safe query builder for DynamoDB and TypeScript.
10 lines (9 loc) • 347 B
TypeScript
import type { AWSConfig, FetchOpts } from './types.js';
interface AWSAccount extends Pick<AWSConfig, 'awsAccountId'> {
awsAccountId: string;
title: string;
color: string;
description?: string;
}
export declare const putAWSAccount: (awsAccount: AWSAccount, { apiUrl, fetch: _fetch, apiKey }: FetchOpts) => Promise<void>;
export {};