@bacons/apple-targets
Version:
Generate Apple Targets with Expo Prebuild
13 lines (12 loc) • 420 B
TypeScript
import { ConfigPlugin } from "expo/config-plugins";
/**
* Check if SVG content is an SF Symbol template by looking for the
* characteristic `<g id="Symbols">` group that all SF Symbol templates contain.
*/
export declare function isSFSymbolContent(content: string): boolean;
export declare const withIosSymbolset: ConfigPlugin<{
cwd: string;
name: string;
svgContent: string;
svgFilename: string;
}>;