UNPKG

@intocode-io/fireliff-cli

Version:

Command line interface for building LIFF app on Firebase

14 lines (10 loc) 283 B
import { ThingsRequest } from './things-request'; export class ThingsGetTrialProductsRequest extends ThingsRequest { constructor(options) { super(options); this.endpoint = `${this.endpoint}/trial/products`; } send() { return this.axios.get(this.endpoint); } }