Files
calendar/packages/lib/WebAppURL.ts
T
2ad3592eb3 chore: Introduce a new class WebAppURL that extends URL (#14982)
* chore: Introduce a new class WebAppURL that extends URL

* update

---------

Co-authored-by: Peer Richelsen <[email protected]>
2024-07-18 07:27:34 +00:00

9 lines
263 B
TypeScript

import { WEBAPP_URL } from "@calcom/lib/constants";
/** This class extends the native URL and uses WEBAPP_URL as the base URL for creating object URLs */
export class WebAppURL extends URL {
constructor(path: string | URL) {
super(path, WEBAPP_URL);
}
}