UNPKG

crisp-api

Version:

Crisp API wrapper for Node - official, maintained by Crisp

32 lines (31 loc) 1.03 kB
"use strict"; /* * This file is part of node-crisp-api * * Copyright (c) 2026 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 PlanSubscription_1 = __importDefault(require("../resources/PlanSubscription")); /************************************************************************** * CLASSES ***************************************************************************/ /** * Crisp Plan Service */ class PlanService { constructor() { /* eslint-disable @typescript-eslint/no-explicit-any */ this.__resources = [ PlanSubscription_1.default ]; } } exports.default = PlanService;