@tempots/ui
Version:
Provides a higher level of renderables to help fast development with Tempo.
13 lines (12 loc) • 383 B
TypeScript
import { LocationData } from './location-data';
/**
* Creates a location prop that represents the current browser location.
* The location prop is updated whenever the browser location changes.
*
* @returns The location prop.
* @internal
*/
export declare const makeBrowserLocationProp: () => {
value: import('@tempots/dom').Prop<LocationData>;
dispose: () => void;
};