1/*
2 * Copyright (c) Huawei Technologies Co., Ltd. 2021-2022. All rights reserved.
3 */
4
5/**
6 * [常量]<BR>
7 *
8 */
9export class Constants {
10  /**
11   * Bundle name of audioPicker
12   */
13  public static readonly AUDIO_PICKER_BUNDLE = 'com.ohos.filepicker';
14
15  /**
16   * AudioPicker每页请求数量
17   */
18  public static readonly PICKER_PAGE_SIZE: number = 100
19
20  /**
21   * 每次请求参数
22   */
23  public static readonly PAGE_COUNT: number = 1
24}