time-to-botec

Benchmark sampling in different programming languages
Log | Files | Refs | README

operationError.d.ts (837B)


      1 export declare abstract class OperationError {
      2     type: string;
      3     abstract toString(): string;
      4 }
      5 export declare class DivisionByZeroError extends OperationError {
      6     toString(): string;
      7 }
      8 export declare class ComplexNumberError extends OperationError {
      9     toString(): string;
     10 }
     11 export declare class InfinityError extends OperationError {
     12     toString(): string;
     13 }
     14 export declare class NegativeInfinityError extends OperationError {
     15     toString(): string;
     16 }
     17 export declare class SampleMapNeedsNtoNFunction extends OperationError {
     18     toString(): string;
     19 }
     20 export declare class PdfInvalidError extends OperationError {
     21     toString(): string;
     22 }
     23 export declare class OtherOperationError extends OperationError {
     24     value: string;
     25     constructor(value: string);
     26     toString(): string;
     27 }
     28 //# sourceMappingURL=operationError.d.ts.map