1/* 2 * Copyright (c) 2022-2023 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16/** 17 * @file 18 * @kit ArkTS 19 * @arkts 1.2 20 */ 21 22import buffer from '@ohos.buffer'; 23import uri from '@ohos.uri'; 24import url from '@ohos.url'; 25import ArrayList from '@ohos.util.ArrayList'; 26import util from '@ohos.util'; 27import Deque from '@ohos.util.Deque'; 28import LightWeightMap from '@ohos.util.LightWeightMap'; 29import LightWeightSet from '@ohos.util.LightWeightSet'; 30import Queue from '@ohos.util.Queue'; 31import JSON from '@ohos.util.json'; 32import stream from '@ohos.util.stream'; 33import HashMap from '@ohos.util.HashMap'; 34import HashSet from '@ohos.util.HashSet'; 35import LinkedList from '@ohos.util.LinkedList'; 36import List from '@ohos.util.List'; 37import PlainArray from '@ohos.util.PlainArray'; 38import Stack from '@ohos.util.Stack'; 39import TreeMap from '@ohos.util.TreeMap'; 40import TreeSet from '@ohos.util.TreeSet'; 41 42 43export { 44 ArrayList, Deque, HashMap, HashSet, LightWeightMap, LightWeightSet, LinkedList, List, 45 PlainArray, Queue, Stack, TreeMap, TreeSet, buffer, uri, url, util, JSON, stream 46}; 47