source: node_modules/@swagger-api/apidom-ns-openapi-3-0/es/refractor/toolbox.mjs@ e48199a

main
Last change on this file since e48199a was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 516 bytes
Line 
1import { createNamespace, isStringElement } from '@swagger-api/apidom-core';
2import * as openApi3_0Predicates from "../predicates.mjs";
3import * as refractorPredicates from "./predicates.mjs";
4import openApi3_0Namespace from "../namespace.mjs";
5const createToolbox = () => {
6 const namespace = createNamespace(openApi3_0Namespace);
7 const predicates = {
8 ...refractorPredicates,
9 ...openApi3_0Predicates,
10 isStringElement
11 };
12 return {
13 predicates,
14 namespace
15 };
16};
17export default createToolbox;
Note: See TracBrowser for help on using the repository browser.