Files
Fluxup_PAP/node_modules/@expo/config-plugins/build/android/Properties.d.ts
2026-03-10 16:18:05 +00:00

13 lines
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;