@expo/config-plugins
Version:
A library for Expo config plugins
13 lines (12 loc) • 325 B
TypeScript
export type PropertiesItem = {
type: 'comment';
value: string;
} | {
type: 'empty';
} | {
type: 'property';
key: string;
value: string;
};
export declare function parsePropertiesFile(contents: string): PropertiesItem[];
export declare function propertiesListToString(props: PropertiesItem[]): string;