10 lines
258 B
TypeScript
10 lines
258 B
TypeScript
import type { UrlSerializer } from '@/shared/types'
|
|
|
|
export const parseUrl: UrlSerializer['parseUrl'] = () => {
|
|
throw new Error('Not implemented')
|
|
}
|
|
|
|
export const stringifyUrl: UrlSerializer['stringifyUrl'] = () => {
|
|
throw new Error('Not implemented')
|
|
}
|