/** * @license * * Copyright IBM Corp. 2020, 2024 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. */ /** * Video player's content state. */ export declare enum VIDEO_PLAYER_CONTENT_STATE { /** * A state showing thumbnail. */ THUMBNAIL = "thumbnail", /** * A state showing/playing the video. */ VIDEO = "video" } /** * Video player's playing mode. */ export declare enum VIDEO_PLAYER_PLAYING_MODE { /** * Plays video inline. */ INLINE = "inline", /** * Plays video in light box. */ LIGHTBOX = "lightbox" } export declare enum BUTTON_POSITION { TOP_LEFT = "top-left", TOP_RIGHT = "top-right", BOTTOM_RIGHT = "bottom-right", BOTTOM_LEFT = "bottom-left" } //# sourceMappingURL=defs.d.ts.map