···849849 * @param opts - A {@link ClientOptions} objects with options for the `Client`.
850850 * @returns A {@link Client} instantiated with `opts`.
851851 */
852852-export const createClient = (Client as any) as (opts: ClientOptions) => Client;
852852+export const createClient = Client as any as (opts: ClientOptions) => Client;
···755755 * which this type defines.
756756 * @internal
757757 */
758758-export type DebugEvent<
759759- T extends keyof DebugEventTypes | string = string
760760-> = DebugEventArg<T> & {
761761- timestamp: number;
762762- source: string;
763763-};
758758+export type DebugEvent<T extends keyof DebugEventTypes | string = string> =
759759+ DebugEventArg<T> & {
760760+ timestamp: number;
761761+ source: string;
762762+ };
+1-1
packages/core/src/utils/typenames.ts
···109109 formattedDocs.set(query.__key, result);
110110 }
111111112112- return (result as unknown) as T;
112112+ return result as unknown as T;
113113};