Firx build cont.

This commit is contained in:
artrejo 2022-01-20 17:59:56 -08:00
parent 3ef992c1af
commit 6c9176f4ba

View File

@ -1,4 +1,4 @@
export function validateEndpoint(endpointToValidate: string, allowedEndpoints: ReadonlyArray<string>): boolean {
export function validateEndpoint(endpointToValidate: string, allowedEndpoints: string[]): boolean {
if (!endpointToValidate) {
return true;
}