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 | |
---|
1 | import { createNamespace, isStringElement } from '@swagger-api/apidom-core';
|
---|
2 | import * as openApi3_0Predicates from "../predicates.mjs";
|
---|
3 | import * as refractorPredicates from "./predicates.mjs";
|
---|
4 | import openApi3_0Namespace from "../namespace.mjs";
|
---|
5 | const 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 | };
|
---|
17 | export default createToolbox; |
---|
Note:
See
TracBrowser
for help on using the repository browser.