@armanatz/expo-hms-location
Version:
Expo config plugin to configure @hmscore/react-native-hms-location on prebuild
21 lines (20 loc) • 565 B
TypeScript
type AppendResults = {
contents: string;
didClear: boolean;
didAppend: boolean;
};
/**
* Append a new item to the bottom of the original file and add a generated header.
*
* @param src contents of the original file
* @param newSrc new content to append into the original file
* @param tag used to update and remove merges
* @param comment comment style `//` or `#`
*/
export declare function appendContents({ src, tag, comment, newSrc, }: {
src: string;
tag: string;
comment: string;
newSrc: string;
}): AppendResults;
export {};