/// export default abstract class Result { /** * Get the PDF as a Buffer. */ abstract buffer(): Promise; /** * Save the PDF to the given filepath. */ saveTo(path: string): Promise; }