• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * Copyright (c) 2024 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 * The standard types defined in ArkTS Stdlib with explicitly specified base types.
18 */
19export const EXTENDED_BASE_TYPES = new Map<string, string[]>([
20  ['DataView', ['ArrayBufferView']],
21  ['BigInt64Array', ['ArrayLike']],
22  ['BigUint64Array', ['ArrayLike']],
23  ['Float32Array', ['ArrayLike']],
24  ['Float64Array', ['ArrayLike']],
25  ['Int8Array', ['ArrayLike']],
26  ['Int16Array', ['ArrayLike']],
27  ['Int32Array', ['ArrayLike']],
28  ['Uint8ClampedArray', ['ArrayLike']],
29  ['Uint8Array', ['ArrayLike']],
30  ['Uint16Array', ['ArrayLike']],
31  ['Uint32Array', ['ArrayLike']],
32  ['ConcatArray', ['ArrayLike']],
33  ['ReadonlyArray', ['ConcatArray']],
34  ['Array', ['ReadonlyArray']],
35  ['Map', ['ReadonlyMap']],
36  ['Set', ['ReadonlySet']]
37]);
38