summaryrefslogtreecommitdiffstats
path: root/node_modules/schema-utils/declarations/util/hints.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/schema-utils/declarations/util/hints.d.ts')
-rw-r--r--node_modules/schema-utils/declarations/util/hints.d.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/node_modules/schema-utils/declarations/util/hints.d.ts b/node_modules/schema-utils/declarations/util/hints.d.ts
new file mode 100644
index 0000000..39412aa
--- /dev/null
+++ b/node_modules/schema-utils/declarations/util/hints.d.ts
@@ -0,0 +1,6 @@
+export function stringHints(schema: Schema, logic: boolean): string[];
+export function numberHints(schema: Schema, logic: boolean): string[];
+export type Schema =
+ | (import('json-schema').JSONSchema4 & import('../validate').Extend)
+ | (import('json-schema').JSONSchema6 & import('../validate').Extend)
+ | (import('json-schema').JSONSchema7 & import('../validate').Extend);