@devlander/collect-exports-for-bundle
Version:
Generate comprehensive export files for TypeScript/JavaScript projects with Rollup compatibility
26 lines (25 loc) • 769 B
TypeScript
export declare const regexDefinitions: {
isCamelCase: RegExp;
containsUnderscore: RegExp;
containsDash: RegExp;
containsDuplicateDriveLetters: RegExp;
isDashCase: RegExp;
containsSpecialChar: RegExp;
driveLetterPattern: RegExp;
isSnakeCase: RegExp;
isPascalCase: RegExp;
isConstantCase: RegExp;
containsNonWordChar: RegExp;
defaultFunctionRegex: RegExp;
matchesDefaultExport: RegExp;
matchesExportNamedAsDefault: RegExp;
matchesNamedExport: RegExp;
matchesTypeExport: RegExp;
matchesInterfaceExport: RegExp;
matchesFunctionExport: RegExp;
matchesConstExport: RegExp;
matchesLetExport: RegExp;
matchesVarExport: RegExp;
matchesEnumExport: RegExp;
matchesClassExport: RegExp;
};