feat: implement FluentUrl class with configuration and options normalization

This commit is contained in:
2026-02-22 16:42:34 -05:00
parent 03f30ecbcd
commit f01755fda9
6 changed files with 169 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
export const parseUrl: UrlSerializer['parseUrl'] = () => {
throw new Error('Not implemented')
}
export const stringifyUrl: UrlSerializer['stringifyUrl'] = () => {
throw new Error('Not implemented')
}