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

8 lines
205 B
TypeScript

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