UNPKG

crisp-api

Version:

Crisp API wrapper for Node - official, maintained by Crisp

32 lines (31 loc) 1.02 kB
"use strict"; /* * This file is part of node-crisp-api * * Copyright (c) 2025 Crisp IM SAS * All rights belong to Crisp IM SAS */ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); /************************************************************************** * IMPORTS ***************************************************************************/ // PROJECT: RESOURCES const MediaAnimation_1 = __importDefault(require("../resources/MediaAnimation")); /************************************************************************** * CLASSES ***************************************************************************/ /** * Crisp Media Service */ class MediaService { constructor() { /* eslint-disable @typescript-eslint/no-explicit-any */ this.__resources = [ MediaAnimation_1.default ]; } } exports.default = MediaService;