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.

shared.d.ts 393B

12345678910111213
  1. import { Fork } from "../types";
  2. export default function (fork: Fork): {
  3. geq: (than: any) => import("./types").Type<{}>;
  4. defaults: {
  5. "null": () => null;
  6. "emptyArray": () => never[];
  7. "false": () => boolean;
  8. "true": () => boolean;
  9. "undefined": () => void;
  10. "use strict": () => string;
  11. };
  12. isPrimitive: import("./types").Type<{}>;
  13. };