Type Alias QueryConstructor<T, Args>

QueryConstructor: (...args: Args) => Query<T> & {
    getKey?: (...args: Args) => string;
}

Type Parameters

  • T extends unknown
  • Args extends any[]