Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | /**
* Parameter info for C++ functions.
* Uses simple strings for types since C++ types pass through unchanged.
*/
interface ICppParameterInfo {
/** Parameter name (may be empty for prototypes) */
readonly name: string;
/** Parameter type as string (e.g., "int", "const std::string&") */
readonly type: string;
/** Whether this parameter is const */
readonly isConst: boolean;
/** Whether this parameter is an array */
readonly isArray: boolean;
}
export default ICppParameterInfo;
|