UNPKG

@polkadot/dev

Version:

A collection of shared CI scripts and development environment used by @polkadot projects

20 lines (19 loc) 876 B
/** This should appear as-is in the output with: 1. extension added, 2. augmented.d.ts correct */ import './augmented.js'; /** Double double work, i.e. re-exports */ export { Clazz } from './Clazz.js'; /** Function to ensure that BigInt does not have the Babel Math.pow() transform */ export declare function bigIntExp(): bigint; /** Function to ensure that dynamic imports work */ export declare function dynamic(a: number, b: number): Promise<number>; /** Function to ensure we have json correctly imported */ export declare function json(): string; /** Check support for the ?? operator */ export declare function jsOpExp(a?: number): number; /** This is an actual check to ensure PURE is all-happy */ export declare const pureOpExp: number; declare const fooA = 1; declare const fooB = 2; declare const fooC = 3; declare const fooD = 4; export { fooA, fooB, fooC, fooD };