Files
standardnotes-app-web/packages/ui-services/src/Route/RouteServiceInterface.ts
2022-10-24 14:30:28 +02:00

9 lines
267 B
TypeScript

import { RootQueryParam } from './RootQueryParam'
import { RouteParserInterface } from './RouteParserInterface'
export interface RouteServiceInterface {
deinit(): void
getRoute(): RouteParserInterface
removeQueryParameterFromURL(param: RootQueryParam): void
}