github.com/jfrog/frogbot@v1.1.1-0.20231221090046-821a26f50338/action/node_modules/@actions/core/lib/utils.d.ts (about) 1 import { AnnotationProperties } from './core'; 2 import { CommandProperties } from './command'; 3 /** 4 * Sanitizes an input into a string so it can be passed into issueCommand safely 5 * @param input input to sanitize into a string 6 */ 7 export declare function toCommandValue(input: any): string; 8 /** 9 * 10 * @param annotationProperties 11 * @returns The command properties to send with the actual annotation command 12 * See IssueCommandProperties: https://github.com/actions/runner/blob/main/src/Runner.Worker/ActionCommandManager.cs#L646 13 */ 14 export declare function toCommandProperties(annotationProperties: AnnotationProperties): CommandProperties;