magically-sdk
Version:
Official SDK for Magically - Build mobile apps with AI
19 lines (18 loc) • 599 B
TypeScript
export declare const AsyncStorage: {
getItem: jest.Mock<Promise<string | null>, [key: string], any>;
setItem: jest.Mock<Promise<void>, [key: string, value: string], any>;
removeItem: jest.Mock<Promise<void>, [key: string], any>;
clear: jest.Mock<Promise<void>, [], any>;
};
export declare const WebBrowser: {
openBrowserAsync: jest.Mock<Promise<{
type: string;
}>, [url: string], any>;
maybeCompleteAuthSession: jest.Mock<{
type: string;
}, [], any>;
};
export declare const Platform: {
OS: string;
select: jest.Mock<any, [obj: any], any>;
};