10 lines
427 B
TypeScript
10 lines
427 B
TypeScript
export declare const getToken: (url: any, user: any, password: any) => Promise<string>;
|
|
export declare class Magento {
|
|
static token: any;
|
|
static apiConfig: any;
|
|
static init: (baseUrl: string, username: string, password: string) => Promise<any>;
|
|
static initWithProfile: (profilePath: string, baseUrl: any) => Promise<any>;
|
|
}
|
|
export declare const test: () => Promise<void>;
|
|
export * as API from './api';
|