UNPKG

387 BTypeScriptView Raw
1import { StorageAccessLevel } from '@aws-amplify/core';
2export type StorageOptions = {
3 accessLevel?: StorageAccessLevel;
4};
5export type StorageListAllOptions = StorageOptions & {
6 listAll: true;
7};
8export type StorageListPaginateOptions = StorageOptions & {
9 listAll?: false;
10 pageSize?: number;
11 nextToken?: string;
12};
13export type StorageRemoveOptions = StorageOptions;