/* * Copyright (c) 2021-2023 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * Provides an interface for generating QR codes. * @since 7 */ /** * Provides an interface for generating QR codes. * @form * @since 9 */ interface QRCodeInterface { /** * Called when a QR code is set. * @since 7 */ /** * Called when a QR code is set. * @form * @since 9 */ (value: string): QRCodeAttribute; } /** * Defines the qrcode attribute functions. * @since 7 */ /** * Defines the qrcode attribute functions. * @form * @since 9 */ declare class QRCodeAttribute extends CommonMethod { /** * Called when the QR code color is set. * @since 7 */ /** * Called when the QR code color is set. * @form * @since 9 */ color(value: ResourceColor): QRCodeAttribute; /** * Called when setting the QR code background color. * @since 7 */ /** * Called when setting the QR code background color. * @form * @since 9 */ backgroundColor(value: ResourceColor): QRCodeAttribute; } /** * Defines QRCode Component. * @since 7 */ /** * Defines QRCode Component. * @form * @since 9 */ declare const QRCode: QRCodeInterface; /** * Defines QRCode Component instance. * @since 7 */ /** * Defines QRCode Component instance. * @form * @since 9 */ declare const QRCodeInstance: QRCodeAttribute;