@aws-amplify/storage
Version:
Storage category of aws-amplify
20 lines (19 loc) • 685 B
TypeScript
import { AmplifyContext } from '@aws-amplify/core';
import { ListAllInput, ListPaginateInput } from '../types/inputs';
import { ListAllWithPathOutput, ListPaginateWithPathOutput } from '../../providers/s3';
/**
* @internal
*/
export declare function list(ctx: AmplifyContext, input: ListAllInput): Promise<ListAllWithPathOutput>;
/**
* @internal
*/
export declare function list(ctx: AmplifyContext, input: ListPaginateInput): Promise<ListPaginateWithPathOutput>;
/**
* @internal
*/
export declare function list(input: ListAllInput): Promise<ListAllWithPathOutput>;
/**
* @internal
*/
export declare function list(input: ListPaginateInput): Promise<ListPaginateWithPathOutput>;