crisp-api
Version:
Crisp API wrapper for Node - official, maintained by Crisp
20 lines (19 loc) • 736 B
TypeScript
/**************************************************************************
* IMPORTS
***************************************************************************/
import PlanSubscription from "../resources/PlanSubscription";
/**************************************************************************
* CLASSES
***************************************************************************/
/**
* Crisp Plan Service
*/
declare class PlanService {
__resources: any[];
}
/**************************************************************************
* EXPORTS
***************************************************************************/
export interface PlanServiceInterface extends PlanSubscription {
}
export default PlanService;