mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
11 lines
315 B
TypeScript
11 lines
315 B
TypeScript
import { Chromiumly } from './Chromiumly';
|
|
import { ChromiumRoute } from './_types';
|
|
|
|
export abstract class Converter {
|
|
readonly endpoint: string;
|
|
|
|
constructor(route: ChromiumRoute) {
|
|
this.endpoint = `${Chromiumly.GOTENBERG_ENDPOINT}/${Chromiumly.CHROMIUM_PATH}/${Chromiumly.CHROMIUM_ROUTES[route]}`;
|
|
}
|
|
}
|