import { Note } from './note.entity'; export class NoteUtils { public static parseTitle(note: Note): string { // TODO: Implement method return 'Hardcoded note title'; } public static parseDescription(note: Note): string { // TODO: Implement method return 'Hardcoded note description'; } public static parseTags(note: Note): string[] { // TODO: Implement method return ['Hardcoded note tag']; } }