UNPKG

@parkingboss/api

Version:
8 lines (7 loc) 231 B
export interface BaseWatcher { subscribe(fn: (href: string) => void): () => void; get(): string; set(val: string): void; update(fn: (href: string) => string): void; } export declare function apiBase(): BaseWatcher;