以下のジェネリック関数において、型パラメータはどこで宣言されていますか? ```typescript function getValue<T>(input: T): T { return input; } ```