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 21 22 | import type ICppBaseSymbol from "./ICppBaseSymbol";
import type ICppParameterInfo from "./ICppParameterInfo";
/**
* Symbol representing a C++ function or method.
*/
interface ICppFunctionSymbol extends ICppBaseSymbol {
/** Discriminator narrowed to "function" */
readonly kind: "function";
/** Return type as string */
readonly type: string;
/** Function parameters */
readonly parameters?: ReadonlyArray<ICppParameterInfo>;
/** Whether this is a declaration vs definition */
readonly isDeclaration?: boolean;
}
export default ICppFunctionSymbol;
|