This repository has been archived on 2023-11-06. You can view files and clone it, but cannot push or open issues or pull requests.
beatsaber-overlay/src/utils/utils.js

15 lines
345 B
JavaScript
Raw Normal View History

import WebsiteTypes from "../consts/WebsiteType";
export default class Utils {
constructor() {};
/**
* Returns the information for the given website type.
*
2022-10-08 18:17:49 +00:00
* @param {WebsiteTypes} website
* @returns The website type's information.
*/
getWebsiteApi(website) {
return WebsiteTypes[website]
}
}