@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
6 lines (5 loc) • 299 B
TypeScript
type LocationChangeCallback = (location: string) => void;
export type UnsubscribeFunction = () => void;
export declare const setCurrentLocation: (location: string) => void;
export declare const onLocationChange: (callback: LocationChangeCallback, eager?: boolean) => UnsubscribeFunction;
export {};