@arcana/auth
Version:
Arcana Auth
9 lines (8 loc) • 417 B
TypeScript
import { AppThemeInfo, AppInfo, Theme } from './typings';
declare function getImageUrls(appId: string, theme: Theme, gatewayUrl: string): {
horizontal: string;
vertical: string;
};
declare function getAppThemeInfo(appId: string, gatewayUrl: string): Promise<AppThemeInfo>;
declare function getAppInfo(appId: string, gatewayUrl: string): Promise<AppInfo>;
export { getImageUrls, getAppInfo, getAppThemeInfo };