- Configurable server URL (default: pedshub.com) - Android + iOS platforms initialized - Dark theme matching quiz app (#0f172a) - Status bar and navigation bar color matched - Auto-redirect on subsequent launches - App ID: com.pedshub.quiz, App Name: PedsHub Build: cd mobile && npx cap sync && npx cap open android Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
19 lines
751 B
TypeScript
19 lines
751 B
TypeScript
/**
|
|
* ANSI escape codes (WIP)
|
|
*
|
|
* @see https://en.wikipedia.org/wiki/ANSI_escape_code
|
|
*/
|
|
export declare class EscapeCode {
|
|
static readonly cursorLeft: () => string;
|
|
static readonly cursorUp: (count?: number) => string;
|
|
static readonly cursorDown: (count?: number) => string;
|
|
static readonly cursorForward: (count?: number) => string;
|
|
static readonly cursorBackward: (count?: number) => string;
|
|
static readonly cursorHide: () => string;
|
|
static readonly cursorShow: () => string;
|
|
static readonly eraseLine: () => string;
|
|
static readonly eraseLines: (count: number) => string;
|
|
static readonly eraseUp: () => string;
|
|
static readonly eraseDown: () => string;
|
|
static readonly eraseScreen: () => string;
|
|
}
|