android-sdk-numic-plugin
Version:
Configures native Android installation to match installed SDK.
10 lines (9 loc) • 317 B
TypeScript
import type { Options } from './types';
interface PluginInput {
projectPath?: string;
nativePath?: string;
log?: (message: string, type?: 'error' | 'warning') => void;
options?: Options;
}
declare const _default: ({ nativePath, log, options, }: PluginInput) => Promise<void>;
export default _default;