import {Storage} from '../../types/storage';

/**
 * The `StorageApi` object provides access to persistent local storage methods for your POS UI extension. Access these methods through `shopify.storage` to store, retrieve, and manage data that persists across sessions.
 */
export interface StorageApi {
  storage: Storage;
}
