time-to-botec

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

index.d.ts (2295B)


      1 import { type Env } from "./dist/env.js";
      2 import { SqProject } from "./public/SqProject/index.js";
      3 export { type SqInput, SqTextAreaInput, SqCheckboxInput, SqSelectInput, SqTextInput, } from "./public/SqValue/SqInput.js";
      4 import { SqLambdaValue, SqNumberValue, SqStringValue, type SqValue } from "./public/SqValue/index.js";
      5 export { SqCompileError, SqFrame, SqOtherError, SqRuntimeError, type SqError, } from "./public/SqError.js";
      6 export { SqDistributionError } from "./public/SqValue/SqDistribution/SqDistributionError.js";
      7 export { type SqPointSet, type SqShape, } from "./public/SqValue/SqDistribution/SqPointSet.js";
      8 export { SqAbstractDistribution, SqDistributionTag, SqPointSetDistribution, SqSampleSetDistribution, SqSymbolicDistribution, type SqDistribution, } from "./public/SqValue/SqDistribution/index.js";
      9 export { type SqDomain } from "./public/SqValue/SqDomain.js";
     10 export { SqLambda, type SqLambdaParameter } from "./public/SqValue/SqLambda.js";
     11 export { SqDictValue } from "./public/SqValue/index.js";
     12 export { SqDistFnPlot, SqDistributionsPlot, SqNumericFnPlot, SqRelativeValuesPlot, SqScatterPlot, type SqPlot, } from "./public/SqValue/SqPlot.js";
     13 export { SqTableChart } from "./public/SqValue/SqTableChart.js";
     14 export { SqCalculator } from "./public/SqValue/SqCalculator.js";
     15 export { SqDict } from "./public/SqValue/SqDict.js";
     16 export { SqLinearScale, SqLogScale, SqPowerScale, SqSymlogScale, type SqScale, } from "./public/SqValue/SqScale.js";
     17 export { type PathItem, SqValuePath } from "./public/SqValuePath.js";
     18 export { parse } from "./public/parse.js";
     19 export { fmap as resultMap, type result } from "./utility/result.js";
     20 export { type LocationRange as SqLocation } from "peggy";
     21 export { defaultEnv as defaultEnvironment } from "./dist/env.js";
     22 export { SqLambdaValue, SqNumberValue, SqProject, SqStringValue, type Env, type SqValue, };
     23 export { type AST, type ASTNode } from "./ast/parse.js";
     24 export { type ASTCommentNode } from "./ast/peggyHelpers.js";
     25 export { type SqLinker } from "./public/SqLinker.js";
     26 export declare function run(code: string, options?: {
     27     environment?: Env;
     28 }): Promise<import("./public/types.js").SqOutputResult>;
     29 export declare function sq(strings: TemplateStringsArray, ...rest: unknown[]): string;
     30 //# sourceMappingURL=index.d.ts.map