react-native-integrate
Version:
Automate integration of additional code into React Native projects
29 lines (28 loc) • 645 B
TypeScript
export declare function findClosingTagIndex(content: string, methodStartIndex: number, tags?: {
open: string;
close: string;
comment: string;
}): number;
export declare function stripNonCode(content: string, regex: string): string;
export declare const TagDefinitions: {
CURLY: {
open: string;
close: string;
comment: string;
};
XML: {
open: string;
close: string;
comment: string;
};
POD: {
open: string;
close: string;
comment: string;
};
BRACKETS: {
open: string;
close: string;
comment: string;
};
};