server-esm: Change single export to export default

This commit is contained in:
Elian Doran
2024-07-18 21:50:12 +03:00
parent 0ceae0a65e
commit ecb8a7f394
63 changed files with 73 additions and 73 deletions

View File

@@ -651,6 +651,6 @@ function BackendScriptApi(this: Api, currentNote: BNote, apiParams: ApiParams) {
}
}
export = BackendScriptApi as any as {
export default BackendScriptApi as any as {
new (currentNote: BNote, apiParams: ApiParams): Api
};