(key?: string)
| 4 | export const VUE_QUERY_CLIENT = 'VUE_QUERY_CLIENT' |
| 5 | |
| 6 | export function getClientKey(key?: string) { |
| 7 | const suffix = key ? `:${key}` : '' |
| 8 | return `${VUE_QUERY_CLIENT}${suffix}` |
| 9 | } |
| 10 | |
| 11 | export function updateState( |
| 12 | state: Record<string, any>, |
no outgoing calls
no test coverage detected
searching dependent graphs…