New mobile/ directory with Capacitor project: - Configurable server URL launcher (default: app.pedshub.com) - Android: foreground service + wake lock for background recording (AudioRecordingService preserved from existing TWA) - iOS: background audio mode + microphone permission - App ID: com.pedshub.scribe - Both platforms initialized and synced Existing android/ TWA project untouched — this is a separate project. Build: cd mobile && npx cap open android (or ios)
28 lines
681 B
TypeScript
28 lines
681 B
TypeScript
declare namespace astralRegex {
|
|
interface Options {
|
|
/**
|
|
Only match an exact string. Useful with `RegExp#test()` to check if a string is a astral symbol. Default: `false` _(Matches any astral symbols in a string)_
|
|
*/
|
|
readonly exact?: boolean;
|
|
}
|
|
}
|
|
|
|
/**
|
|
Regular expression for matching [astral symbols](https://everything2.com/title/astral+plane).
|
|
|
|
@returns A `RegExp` for matching astral symbols.
|
|
|
|
@example
|
|
```
|
|
import astralRegex = require('astral-regex');
|
|
|
|
astralRegex({exact: true}).test('🦄');
|
|
//=> true
|
|
|
|
'foo 🦄 💩 bar'.match(astralRegex());
|
|
//=> ['🦄', '💩']
|
|
```
|
|
*/
|
|
declare function astralRegex(options?: astralRegex.Options): RegExp;
|
|
|
|
export = astralRegex;
|