UNPKG

@veecode-platform/safira-cli

Version:

Generate a microservice project from your spec.

9 lines (8 loc) 262 B
/// <reference types="node" /> import { URL } from "url"; export declare class UrlUtils { static validate(url: string): boolean; static removeProtocol(url: string): string; static normalize(url: string): string; static parse(url: string): URL; }