Press n or j to go to the next uncovered block, b, p or k for the previous block.
/** Interface for the DTO used for list of strings. */ export interface ListStringDto { /** The list of strings */ messages: string[]; }