UNPKG

@envelop/core

Version:

This is the core package for Envelop. You can find a complete documentation here: https://github.com/n1ru4l/envelop

15 lines (14 loc) 322 B
export const useSchema = (schema) => { return { onPluginInit({ setSchema }) { setSchema(schema); }, }; }; export const useSchemaByContext = (schemaLoader) => { return { onEnveloped({ setSchema, context }) { setSchema(schemaLoader(context)); }, }; };