kanban / src /types /mark.js.d.ts
Leon4gr45's picture
Deploy magic-resume as Docker Space (port 3000) (part 2)
aa1ee73 verified
Raw
History Blame Contribute Delete
221 Bytes
declare module 'mark.js' {
export default class Mark {
constructor(element: string | HTMLElement | NodeList | null);
mark(keyword: string | string[], options?: any): void;
unmark(options?: any): void;
}
}