@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
13 lines • 482 B
TypeScript
import { LiveAppManifest } from "../../platform/types";
import { LocalLiveAppDB } from "../react";
export type LiveAppProviderProps = {
children: React.ReactNode;
db: LocalLiveAppDB;
};
export type LiveAppContextType = {
state: LiveAppManifest[];
addLocalManifest: (LiveAppManifest: any) => void;
removeLocalManifestById: (string: any) => void;
getLocalLiveAppManifestById: (string: any) => LiveAppManifest | undefined;
};
//# sourceMappingURL=types.d.ts.map