@paddle/paddle-node-sdk
Version:
A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript.
13 lines (12 loc) • 486 B
TypeScript
import { type SimulationKind } from '../../enums/index.js';
import { type IEventName } from '../../notifications/index.js';
import { type ISimulationTypeResponse } from '../../types/index.js';
export declare class SimulationType {
readonly name: string;
readonly label: string;
readonly description: string;
readonly group: string;
readonly type: SimulationKind;
readonly events: IEventName[];
constructor(simulationTypeResponse: ISimulationTypeResponse);
}