@aws-amplify/storage
Version:
Storage category of aws-amplify
6 lines (5 loc) • 435 B
TypeScript
import { AmplifyClassV6 } from '@aws-amplify/core';
import { CopyInput, CopyOutput, CopyWithPathInput, CopyWithPathOutput } from '../../types';
export declare const copy: (amplify: AmplifyClassV6, input: CopyInput | CopyWithPathInput) => Promise<CopyOutput | CopyWithPathOutput>;
/** @deprecated Use {@link copyWithPath} instead. */
export declare const copyWithKey: (amplify: AmplifyClassV6, input: CopyInput) => Promise<CopyOutput>;