UNPKG

resumefy

Version:

A simple toolkit to bring your JSON Resume to life

15 lines (14 loc) 426 B
import { Resume, Theme } from '../types.js'; /** * Get the filename from a path * @param path Path to file * @returns filename without extension */ export declare const getFilename: (path: string) => string; /** * Get the theme to use for rendering * @param theme Theme name * @param resume Resume object * @returns Theme object */ export declare const loadTheme: (theme?: string, resume?: Resume) => Promise<Theme>;