UNPKG

@roots/bud-api

Version:

bud.js core module

13 lines (9 loc) 268 B
import type {Bud} from '@roots/bud-framework' export type Parameters = [number | string | URL] export interface setProxyUrl { (...parameters: Parameters): Bud } export const setProxyUrl: setProxyUrl = function (this: Bud, url) { this.proxy(url) return this }