We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ec9032 commit a8acdecCopy full SHA for a8acdec
docusaurus/docs/dev-docs/providers.md
@@ -259,7 +259,7 @@ module.exports = {
259
<TabItem value="typescript" label="TypeScript">
260
261
```ts
262
-export default {
+export {
263
init(providerOptions) {
264
// init your provider if necessary
265
@@ -323,7 +323,7 @@ module.exports = {
323
324
325
326
327
init: (providerOptions = {}, settings = {}) => {
328
return {
329
send: async options => {},
@@ -437,7 +437,7 @@ module.exports = {
437
```ts title="./providers/aws-s3/index.ts"
438
// aws-s3 provider
439
440
-module.exports = {
+export = {
441
init: (config) => {
442
const s3 = new AWS.S3(config);
443
0 commit comments