18 lines
373 B
TypeScript
18 lines
373 B
TypeScript
import type {
|
|
ParseQuery,
|
|
PlainObjectConstraint,
|
|
StringifyQuery,
|
|
} from '@/shared/types'
|
|
|
|
export function parseQuery<T extends PlainObjectConstraint>(): ReturnType<
|
|
ParseQuery<T>
|
|
> {
|
|
throw new Error('Not implemented')
|
|
}
|
|
|
|
export function stringifyQuery<T extends PlainObjectConstraint>(): ReturnType<
|
|
StringifyQuery<T>
|
|
> {
|
|
throw new Error('Not implemented')
|
|
}
|