create-expo-cljs-app
Version:
Create a react native application with Expo and Shadow-CLJS!
13 lines (12 loc) • 333 B
TypeScript
export declare 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;