react-code-dataset / wp-calypso /client /data /domains /diagnostics /domain-diagnostics-query-key.ts
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
175 Bytes
import { QueryKey } from '@tanstack/react-query';
export function domainDiagnosticsQueryKey( domainName: string ): QueryKey {
return [ 'domain-diagnostics', domainName ];
}