UNPKG

@aws-amplify/storage

Version:

Storage category of aws-amplify

21 lines (15 loc) 486 B
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 import { StorageAccessLevel } from '@aws-amplify/core'; export type StorageOptions = { accessLevel?: StorageAccessLevel; }; export type StorageListAllOptions = StorageOptions & { listAll: true; }; export type StorageListPaginateOptions = StorageOptions & { listAll?: false; pageSize?: number; nextToken?: string; }; export type StorageRemoveOptions = StorageOptions;