You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IGenerator.cs 244B

12345678910
  1. using PuppeteerSharp;
  2. namespace BlackRock.Reporting.API.Core
  3. {
  4. public interface IGenerator
  5. {
  6. Task Generate(string url, string path,PdfOptions options);
  7. Task Isolate(string url, string path,PdfOptions options);
  8. }
  9. }