UNPKG

@line/bot-sdk

Version:
32 lines 931 B
/** * LINE Messaging API * This document describes LINE Messaging API. * * The version of the OpenAPI document: 0.0.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { FlexComponentBase } from "./models.js"; /** * @see <a href="https://developers.line.biz/en/reference/messaging-api/#icon">https://developers.line.biz/en/reference/messaging-api/#icon</a> */ export type FlexIcon = FlexComponentBase & { type: "icon"; url: string; size?: string; aspectRatio?: string; margin?: string; position?: FlexIcon.PositionEnum; offsetTop?: string; offsetBottom?: string; offsetStart?: string; offsetEnd?: string; scaling?: boolean; }; export declare namespace FlexIcon { type PositionEnum = "relative" | "absolute"; } //# sourceMappingURL=flexIcon.d.ts.map