♻️ (api) removing deprecated 'methods' export (#4350)

This commit is contained in:
Matiss Janis Aboltins
2025-02-11 18:22:23 +00:00
committed by GitHub
parent be1c194eb4
commit 52ce2a179e
2 changed files with 7 additions and 5 deletions

View File

@@ -1,8 +1,7 @@
import type {
RequestInfo as FetchInfo,
RequestInit as FetchInit,
// @ts-ignore: false-positive commonjs module error on build until typescript 5.3
} from 'node-fetch'; // with { 'resolution-mode': 'import' };
} from 'node-fetch';
// loot-core types
import type { InitConfig } from 'loot-core/server/main';
@@ -16,9 +15,6 @@ import { validateNodeVersion } from './validateNodeVersion';
let actualApp: null | typeof bundle.lib;
export const internal = bundle.lib;
// DEPRECATED: remove the next line in @actual-app/api v7
export * as methods from './methods';
export * from './methods';
export * as utils from './utils';