rn-ml
Version:
React Native cli tools
20 lines (19 loc) • 551 B
TypeScript
export declare type Options = {
platform: Array<string>;
flavor: string;
iosIconName: string;
source: string;
androidSource: string;
iosSource: string;
};
export declare type IOSConfigOptions = Omit<Options, "androidSource" | "flavor">;
export declare type AndroidConfigOptions = Omit<Options, "iosIconName" | "iosSource">;
export declare type AndroidGenIconArg = {
coverSize: number;
iconSize: number;
borderRadius: number;
sourceIcon: string;
destIcon: string;
padding: number;
resDir: string;
};