Args<T, F>: T extends {
        [K: symbol]: {
            types: {
                operations: {
                    [K in F]: {
                        args: any;
                    }
                };
            };
        };
    }
    ? T[symbol]["types"]["operations"][F]["args"]
    : any

Type Parameters