1315b9658Sopenharmony_ci/** 2315b9658Sopenharmony_ci * Copyright (c) 2024-2024 Huawei Device Co., Ltd. 3315b9658Sopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License"); 4315b9658Sopenharmony_ci * you may not use this file except in compliance with the License. 5315b9658Sopenharmony_ci * You may obtain a copy of the License at 6315b9658Sopenharmony_ci * 7315b9658Sopenharmony_ci * http://www.apache.org/licenses/LICENSE-2.0 8315b9658Sopenharmony_ci * 9315b9658Sopenharmony_ci * Unless required by applicable law or agreed to in writing, software 10315b9658Sopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS, 11315b9658Sopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12315b9658Sopenharmony_ci * See the License for the specific language governing permissions and 13315b9658Sopenharmony_ci * limitations under the License. 14315b9658Sopenharmony_ci */ 15315b9658Sopenharmony_ci 16315b9658Sopenharmony_ciexport interface IContent { 17315b9658Sopenharmony_ci settings: Array<Map<string, string>>; 18315b9658Sopenharmony_ci user: Array<Map<string, string>>; 19315b9658Sopenharmony_ci userSecure: Array<Map<string, string>>; 20315b9658Sopenharmony_ci} 21315b9658Sopenharmony_ci 22315b9658Sopenharmony_ciexport enum TableType { 23315b9658Sopenharmony_ci SETTINGS, 24315b9658Sopenharmony_ci USER, 25315b9658Sopenharmony_ci USER_SECURE 26315b9658Sopenharmony_ci}