feat: implement FluentUrl class with configuration and options normalization
This commit is contained in:
7
lib/core/serializer/query-serializer.ts
Normal file
7
lib/core/serializer/query-serializer.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
export const parseQuery: QuerySerializer['parseQuery'] = () => {
|
||||
throw new Error('Not implemented')
|
||||
}
|
||||
|
||||
export const stringifyQuery: QuerySerializer['stringifyQuery'] = () => {
|
||||
throw new Error('Not implemented')
|
||||
}
|
||||
7
lib/core/serializer/url-serializer.ts
Normal file
7
lib/core/serializer/url-serializer.ts
Normal 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')
|
||||
}
|
||||
Reference in New Issue
Block a user