Files
standardnotes-app-web/packages/ui-services/src/Route/RouteServiceInterface.ts

10 lines
293 B
TypeScript

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